@demo-uikit-zs/button
v0.0.3
Published
React Component Library Project demonstrating working with monorepo
Downloads
5
Maintainers
Readme
React Component Library
Library made using React containing multiple components having localization and theme customizations. All the components within this library as both left-to-right(LTR) and right-to-left(RTL) handling for languages such as Arabic. This Component Library is made as a part of mono-repo.
Installation
npm install @demo-uikit-zs/button # using npm
yarn add @demo-uikit-zs/button # using yarn
Example
import React from 'react';
import { Button } from "@demo-uikit-zs/button";
export default function Example() {
return (
<Button />
);
}