@real-system/icon
v0.0.65
Published
icon component for real system
Downloads
20
Readme
Installation
Installation
# install peer dependencies
# npm
$ npm install --save @real-system/styled-library @real-system/elements-primitive react react-dom
# yarn
$ yarn add @real-system/styled-library @real-system/elements-primitive react react-dom
# install icon
# npm
$ npm install --save @real-system/icon
# yarn
$ yarn add @real-system/icon
Code Example
import { RealSystemProvider } from '@real-system/styled-library';
import { Button } from '@real-system/icon';
const MyComponent = () => {
return (
<RealSystemProvider>
<Button>Button</Button>
</RealSystemProvider>
);
};