🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@radix-ui/react-primitive

Package Overview
Dependencies
Maintainers
6
Versions
209
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@radix-ui/react-primitive

This is an internal utility, not intended for public usage.

2.1.1-rc.1745972185559
Source
npm
Version published
Weekly downloads
24M
-2.44%
Maintainers
6
Weekly downloads
 
Created

What is @radix-ui/react-primitive?

The @radix-ui/react-primitive package provides foundational components and utilities that are used to build accessible design systems with React. It includes primitives for accessibility, styling, and state management, which can be composed to create more complex UI components.

What are @radix-ui/react-primitive's main functionalities?

Accessibility Primitives

This feature provides components that help manage accessibility concerns, such as visually hiding content while keeping it accessible to screen readers.

{"import { VisuallyHidden } from '@radix-ui/react-primitive';\n\nfunction MyComponent() {\n  return (\n    <VisuallyHidden>This text is visually hidden but accessible to screen readers</VisuallyHidden>\n  );\n}"}

Styling Primitives

This feature includes utilities for styling components using a CSS-in-JS approach, allowing for theme-based styling and dynamic styles.

{"import { styled } from '@radix-ui/react-primitive';\n\nconst StyledButton = styled('button', {\n  backgroundColor: 'crimson',\n  color: 'white',\n  borderRadius: '9999px',\n});\n\nfunction MyComponent() {\n  return <StyledButton>Click me</StyledButton>;\n}"}

State Management Primitives

This feature provides utilities for managing state within components, such as generating unique IDs for DOM elements.

{"import { createId } from '@radix-ui/react-primitive';\n\nfunction MyComponent() {\n  const id = createId();\n  return <div id={id}>Unique content</div>;\n}"}

Other packages similar to @radix-ui/react-primitive

FAQs

Package last updated on 30 Apr 2025

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