reactrax
v0.2.0
Published
A modern, fully customizable React UI component library
Maintainers
Readme
EvolveUI
A modern, fully customizable React UI component library built with TypeScript and styled-components.
Features
- 🎨 Fully customizable theming system
- 📦 Modern React components
- 💪 Written in TypeScript
- 🎯 Comprehensive testing
- 📚 Storybook documentation
- 🌗 Light and dark mode support
Installation
npm install evolve-ui
# or
yarn add evolve-uiUsage
import { ThemeProvider, Button } from 'evolve-ui';
import { lightTheme } from 'evolve-ui/themes';
function App() {
return (
<ThemeProvider theme={lightTheme}>
<Button variant="primary">Click me!</Button>
</ThemeProvider>
);
}Development
- Install dependencies:
npm install- Start Storybook:
npm run storybook- Run tests:
npm test- Build the library:
npm run buildContributing
Contributions are welcome! Please read our contributing guidelines for details.
License
MIT
