A modern, accessible, and customizable React component library built with TypeScript and Tailwind CSS.
- 🎨 Modern and clean design
- ♿ Accessible components following WCAG guidelines
- 📱 Fully responsive
- 🎯 TypeScript support
- 🎨 Customizable with Tailwind CSS
- 📚 Comprehensive documentation with Storybook
- 🧪 Tested components
- 🔧 Easy to integrate
npm install @dyno/ui
# or
yarn add @dyno/uiimport { Button, Modal, DatePicker } from "@dyno/ui";
function App() {
return (
<div>
<Button variant="primary">Click me</Button>
<DatePicker label="Select date" />
<Modal title="Hello" isOpen={true}>
Content
</Modal>
</div>
);
}- Clone the repository:
git clone https://github.com/your-org/dyno-ui.git
cd dyno-ui- Install dependencies:
npm install
# or
yarn install- Start Storybook:
npm run storybook
# or
yarn storybook# Run tests
npm test
# or
yarn test
# Run tests with coverage
npm run test:coverage
# or
yarn test:coverage# Build the library
npm run build
# or
yarn buildThis project is licensed under the MIT License - see the LICENSE file for details.