Kairo UI is a modern, customizable library of UI components designed to speed up web development. It comes with built-in features for rapid UI development, seamless integration, and flexible design patterns.
- Pre-built UI components: Customizable buttons, tooltips, and more for faster development.
- Flexible design: Tailwind CSS integration for easy theming and style adjustments.
- Feature-Sliced Design (FSD): Organize your project efficiently using best practices.
- Optimized build: Compresses assets and removes unnecessary code for production.
- Pre-configured tooling: Includes ESLint, Prettier, Stylelint for consistent and clean code.
- Built-in animations: Enhance user interaction with simple, configurable animations.
You can install Kairo UI from npm:
npm install kairo-ui
After installation, you can import and use the components in your project:
import Button from 'kairo-ui/button'
import Tooltip from 'kairo-ui/tooltip'
const App = () => (
<div>
<Tooltip content="Hello World">
<Button label="Click me!"/>
</Tooltip>
</div>
)
export default App
Kairo UI is designed to be highly customizable. You can adjust styles using Tailwind CSS or provide your own classes and styles.
We welcome contributions! To get started with development:
- Fork the repository:
git clone https://github.com/tiwehub/kairo.git
- Install dependencies:
npm install
- Run the development server:
npm run dev
Kairo UI is released under the MIT License.