@gmcode/react-ui
v0.3.3
Published
General purpose React UI compatible with shadcn projects.
Downloads
564
Maintainers
Readme
@gmcode/react-ui
General purpose React UI components with Tailwind CSS and Radix UI compatible with shadcn projects.
Requirements
- React and react-dom 19+
- Tailwind CSS 4+
Installation
npm install @gmcode/react-uiTailwind setup
/* app.css */
@source '../path/to/node_modules/@gmcode/react-ui';Usage
import { Infobox } from '@gmcode/react-ui'
function Page() {
return (
<Infobox variant="success">
<p>Your email address has been verified.</p>
</Infobox>
)
}