MetisUI - The React Tailwind UI Component Library
npm install metis-ui 
A React component library styled with Tailwind CSS, inspired by Ant Design.
- Reusable Component Logic: Built on Ant Design's logic to ensure consistent interaction patterns.
- Flexible Styling: Fully customizable styles powered by Tailwind CSS, with the ability to quickly override default styles.
- Modern Tech Stack: Built with React, Tailwind CSS, and TypeScript support.
- Documentation-Driven Development: Quickly develop and debug components with example-driven documentation.
Install via npm or pnpm:
``bashUsing npm
npm install metis-ui
🔨 Usage
Import and use components in your project:
`tsx
import React from 'react';
import { Button } from 'metis-ui';const App = () => (
);export default App;
`📚 Documentation
Visit the official documentation for a complete guide and examples.
🛠️ Local Development
Clone the repository and install dependencies:
`bash
Clone the repository
git clone https://github.com/your-repo/metis-ui.git
cd metis-uiInstall dependencies
pnpm installStart the development environment
pnpm start
`Build the project:
`bash
Build the component library
pnpm run buildBuild the documentation
pnpm run docs:build
``We welcome contributions! Please read the Contributing Guide to learn how to get involved.
MIT