Install via npm or pnpm:
# Using npm
npm install metis-ui
# Using pnpm
pnpm add metis-ui
Import and use components in your project:
import React from 'react';
import { Button } from 'metis-ui';
const App = () => (
<div>
<Button type="primary">Click Me</Button>
</div>
);
export default App;
Visit the official documentation for a complete guide and examples.
Clone the repository and install dependencies:
# Clone the repository
git clone https://github.com/your-repo/metis-ui.git
cd metis-ui
# Install dependencies
pnpm install
# Start the development environment
pnpm start
Build the project:
# Build the component library
pnpm run build
# Build the documentation
pnpm run docs:build
We welcome contributions! Please read the Contributing Guide to learn how to get involved.
MIT