Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 4.17 KB

README.md

File metadata and controls

53 lines (38 loc) · 4.17 KB

Hamster UI Kit

An enterprise-class UI design language and React UI library.

✨ Features

  • 🌈 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.

🖥 Environment Support

  • Modern browsers and Internet Explorer 11 (with polyfills)
  • Server-side Rendering
  • Electron
IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Electron
Electron
IE11, Edge last 2 versions last 2 versions last 2 versions last 2 versions

📦 Install

npm install @hamsterbox/ui-kit
yarn add @hamsterbox/ui-kit

🔨 Usage

import { Button } from '@hamsterbox/ui-kit';

const App = () => (
  <>
    <Button type="primary">BUTTON PRIMARY</Button>
  </>
);