An enterprise-class UI design language and React UI library.
- 🌈 Enterprise-class UI designed for web applications.
- 📦 A set of high-quality React components out of the box.
- 🛡 Written in TypeScript with predictable static types.
- 🌍 Internationalization support for dozens of languages.
- 🎨 Powerful theme customization following CaviesLab style.
IE / Edge |
Firefox |
Chrome |
Safari |
Electron |
---|---|---|---|---|
IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
npm install @hamsterbox/ui-kit
yarn add @hamsterbox/ui-kit
import { Button } from '@hamsterbox/ui-kit';
const App = () => (
<>
<Button type="primary">BUTTON PRIMARY</Button>
</>
);