New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@bedrock-layout/primitives

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bedrock-layout/primitives

bedrock-layout primitives

latest
Source
npmnpm
Version
4.0.1
Version published
Maintainers
1
Created
Source

@bedrock-layout/primitives

All the primitives and hooks in a single package.

Full docs at: bedrock-layout.dev

How to install

npm install @bedrock-layout/primitives

or

yarn add @bedrock-layout/primitives

Usage

import { Stack, Inline, Split, Cover, Frame } from "@bedrock-layout/primitives";

export function Hero() {
  return (
    <Stack>
      <Inline>{/* */}</Inline>
      <Split>
        <Cover>
          <Stack>
            <h1>{/* */}</h1>
            <p>{/* */}</p>
            <Inline>
              <button>{/* */}</button>
              <button>{/* */}</button>
            </Inline>
          </Stack>
        </Cover>
        <Frame>
          <img />
        </Frame>
      </Split>
    </Stack>
  );
}

Keywords

primitives

FAQs

Package last updated on 04 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts