Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A collection of UI Components for React built with Tailwind CSS 3
Kimia UI is an open-source collection of copy-paste UI components for React built with Tailwind CSS 3, presented through a Next.js project that lets you browse each component with live code examples.
Kimia UI is a library of React components that combine Tailwind CSS utility classes with component logic to produce reusable UI elements. Rather than a traditional npm package, it is a GitHub repository organized as a Next.js app where each component lives under src/packages and is displayed on its own page under src/pages/components. The repository is maintained under the enochndika GitHub account and has roughly 340 stars.
examples subdirectory with each variant written in TypeScript.snippets subdirectory with plain React code, designed for direct copying into your own project.npm run dev or yarn dev and open http://localhost:3000 to view the components locally.Kimia UI is for React developers who want to assemble interfaces by reusing pre-built Tailwind-styled components instead of writing every utility class themselves. It also fits Tailwind CSS users who want examples of how to structure utility classes inside components. Next.js developers can use the repository as a reference for building a component documentation site, and open-source contributors can extend the library by following the documented addition process.
snippets folder into a project to instantly add a styled component.examples folder to understand the props and structure expected by each component.src/packages, including examples, snippets, and a .tsx file, then registering it under src/pages/components.Each component lives in its own directory under src/packages. That directory contains an examples folder with TypeScript code, a snippets folder with plain React code, and a .tsx file with the component logic. To explore the collection, launch the dev server with npm run dev or yarn dev and open http://localhost:3000.
