daisyui-nixix
v0.0.8
Published
DaisyUI component Library for NixixJS
Downloads
4
Readme
daisyUI components built with NixixJS, Typescript and TailwindCSS
daisyui-nixix 🌼
💿 Install
Make sure you've installed TailwindCSS and daisyUI.
Install the package with npm or yarn:
npm install daisyui-nixix
To prevent TailwindCSS from purging your styles, add the following line to your tailwind.config.js:
module.exports = {
content: [
'node_modules/daisyui/dist/**/*.js',
'node_modules/daisyui-nixix/**/*.{js,ts,tsx,jsx}',
],
plugins: [require('daisyui')],
}
⚡ Quick Start
Import daisyui-nixix components within your component files:
import { Button } from 'daisyui-nixix'
export default (props) => {
return <Button color="primary">Click me!</Button>
}
🎨 Themes
To apply a theme (or multiple themes) to a page or components, import the Theme component and wrap your content:
import { Theme, Button } from 'daisyui-nixix'
export default (props) => {
return (
<>
<Theme dataTheme="dark">
<Button color="primary">Click me, dark!</Button>
</Theme>
<Theme dataTheme="light">
<Button color="primary">Click me, light!</Button>
</Theme>
</>
)
}
Use tools like the official daisyUI Theme Generator or daisyUI Theme Builder to easily create your own themes.
🤝 Contributing
We're looking for contributors to help write stories and unit tests for components.
License
This project is licensed under the MIT License - see the LICENSE.md file for details.