teko-design
v1.0.18
Published
Teko Design System for Staff Web Apps
Downloads
4
Readme
Teko Design System for Staff Web Apps
Extended from Ant Design
📖 Storybook and Documentation
https://design.teko.vn
📦 Install
yarn add teko-design
or
npm install teko-design
🔨 Usage
Change Branding Colors for Your Application
Set global variables for your app's branding colors, otherwise Design System will fallback to the default colors
const window.primaryColor = "#ee112e";
const window.secondaryColor= "#0674e8";
Import Component
import { Button } from 'teko-design';
const App = () => <Button type="primary">PRESS ME</Button>;