@nashtech/headless-ui
v0.1.8
Published
A headless UI component library for building accessible and customizable UI components.
Readme
📦 @nashtech/headless-ui
A headless UI component library for building accessible and customizable UI components.
🚀 Installation
To install the package, use one of the following commands:
# Using npm
npm install @nashtech/headless-ui
# Using pnpm
pnpm add @nashtech/headless-ui
# Using yarn
yarn add @nashtech/headless-ui🛠 Usage
Importing Components
You can import and use the components in your project as follows:
import { Button } from '@nashtech/headless-ui'
export default function App() {
return <Button>Click Me</Button>
}🔧 Customization
If the components support customization (e.g., using Tailwind, custom styles, or props), you can modify their behavior accordingly
<Button className="bg-blue-500 text-white px-4 py-2 rounded">
Custom Button
</Button>