sr-components
v1.5.17
Published
Just another UI component library based on Styled System.
Downloads
65
Readme
SRC
Just another UI component library based on Styled System.
Developing
yarn install
yarn start
- GG.
Contributing
- Fork.
- Work.
- Commit.
- PR.
- GG.
Using
Need to work on this section...
- Run
yarn add sr-components styled-components react-router-dom @fortawesome/fontawesome-svg-core @fortawesome/free-brands-svg-icons @fortawesome/free-regular-svg-icons @fortawesome/free-solid-svg-icons @fortawesome/react-fontawesome
in your app - Add a
<ThemeProvider theme={theme}>
to your project's root, and pass it a theme. You can either add your own theme or import the one used in this library like such:import { theme } from 'sr-components';
. - To import a component in a file, simply type
import { Box } from 'sr-components';
- GG.