arus-ui
v1.0.0
Published
This is a starter kit for a Tailwind CSS UI library using React components.
Downloads
3
Readme
Tailwind CSS UI Library
This is a starter kit for a Tailwind CSS UI library using React components.
Setup
Install dependencies:
npm install
Run the development server:
npm run dev
Build for production:
npm run build
Usage
Import components from the src/components
directory:
import { Button } from './components/core/Button';
function App() {
return (
<div>
<Button variant="primary">Click me</Button>
</div>
);
}
See individual component files for more detailed usage instructions.
Customization
Modify the tailwind.config.js
file to customize your theme.
Adjust global styles in src/styles/globals.css
.
Contributing
[Add your contribution guidelines here]
License
[Add your chosen license here]