0.1.6 • Published 5 months ago

hako-ui v0.1.6

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

hako-ui

A collection of UI components built with utility-first CSS framework TailwindCSS

Getting Started

Hako UI can be used in any React project that uses TailwindCSS. If you don't have TailwindCSS installed in your project, you can follow the TailwindCSS installation guide to get started.

  1. Install the hako-ui package.
pnpm install hako-ui
  1. Add hako-ui as a TailwindCSS plugin and update the content inside the tailwind.config.js file:
module.exports = {
  // Other config options...

  content: [
    // Add hako-ui path
    './node_modules/hako-ui/**/*.js',
  ],
  plugins: [
    // Add hako-ui as plugin
    require('hako-ui/plugin'),
  ],
};