0.2.0 • Published 8 months ago

reactrax v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

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-ui

Usage

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

  1. Install dependencies:
npm install
  1. Start Storybook:
npm run storybook
  1. Run tests:
npm test
  1. Build the library:
npm run build

Contributing

Contributions are welcome! Please read our contributing guidelines for details.

License

MIT