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.
npm install @demo-uikit-zs/button # using npm
yarn add @demo-uikit-zs/button # using yarn
import React from 'react';
import { Button } from "@demo-uikit-zs/button";
export default function Example() {
return (
<Button />
);
}