teko-design

Teko Design System for Staff Web Apps

Usage no npm install needed!

<script type="module">
  import tekoDesign from 'https://cdn.skypack.dev/teko-design';
</script>

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