@real-system/button
v0.0.68
Published
Real System Button component
Downloads
133
Readme
Installation
# install peer dependencies
# npm
$ npm install @real-system/styled-library @real-system/elements-primitive @real-system/utils-library react react-dom
# yarn
$ yarn add @real-system/styled-library @real-system/elements-primitive @real-system/utils-library react react-dom
# install button
# npm
$ npm install @real-system/button
# yarn
$ yarn add @real-system/button
Code Example
import { RealSystemProvider } from '@real-system/styled-library';
import { Button } from '@real-system/button';
const MyButton = () => {
return (
<Button colorScheme="purple" size="lg">
Button
</Button>
);
};