Overview

Palette is 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.

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