2.3.1 • Published 4 years ago
ak-palette v2.3.1
Palette Design System
Palette is a design system and a library of UI Components to build products for the web. Palette provides re-usable components to help create an intuitive and uniform user interface throughout your web apps. All the components follow a particular design system but if it's required to override the design it's possible in Palette components.
Visit Palette website for a detailed documentation
Installation
To install palette ui tool kit run the following command in your terminal
via npm
npm i --save ak-palette
Usage
To use a component import that component from the package, for example to use a button component import it from the package
import React from "react";
import { Button } from "ak-palette";
const MyComponent = () => {
return <Button>Sample button</Button>;
};