1.2.0 • Published 3 years ago
r1cl v1.2.0
R1VS Component Library
This Library is specifically built for r1vs to maintain consistent design patterns among the components and to reduce the time of development.
It is built on top of Material UI v15x.
Node Engine
"node": ">=10"
Dependency
@emotion/react @emotion/styled @mui/material
Installation
npm install r1cl
(OR)
yarn add r1cl
Example
After Installation use the r1cl components inside your app
import { Button } from r1cl;
<Button label=Im r1cl Button />
For Typescript you can import the button type
import { Button } from r1cl;
import type { IButtonProps } from r1cl
<Button label=Im r1cl Button />