uden-ui
v0.1.1
Published
A tailwind based component lib for Solid JS
Downloads
2
Readme
uden-ui
A tailwind based component library for SolidJS.
Quick start
Install it:
npm i uden-ui
# or
yarn add uden-ui
# or
pnpm add uden-ui
# or
bun i uden-ui
Use it:
Modify your tailwind.config.cjs
to include this package as content:
module.exports = {
content: [
// ...
"./node_modules/uden_ui/**/*.{html,js,jsx,ts,tsx}",
// ...
],
// ...
}
Import the components you want to use, for example
import TextInput from 'uden-ui';