FrostUI is a component library built upon tailwindcss (Utility first CSS framework)
Getting Started
Install using NPM / Yarn
Make sure you have installed Node.js
and Tailwind CSS and properly setup it
-
Install frostui dependency as the following command.
npm install @frostui/tailwindcss
yarn add @frostui/tailwindcss
-
Require frostui js and plugin added to the tailwind.config.js
file
module.exports = {
content: [
"./node_modules/@frostui/tailwindcss/**/*.js"
]
}
module.exports = {
plugins: [
require('@frostui/tailwindcss/plugin')
]
}
-
Include the main js file to work all components
<script src="./node_modules/@frostui/tailwindcss/frostui.js"></script>
FrostUI is Open Source project and licensed under MIT.
Thanks to Tailwind CSS