React OUI Icons
Icons for the Optimizely application and other OUI projects.
Implementation
This implementation consists of a Icon React Component that will generate an inline SVG icon using the data associated with the name of the icon. Any attributes will be passed as props.
View all the icons.
Using the icons
-
Download the package: Run yarn add react-oui-icons
to include the latest icons in your project.
-
Using an icon: You can use one of the icons in the HTML with:
import Icon from 'react-oui-icons';
...
<Icon
name="search"
description="search"
size="medium"
fill="black"
/>
...
View all the icons.
Storybook
react-oui-icons
uses Storybook! You can view all of the icons through the Storybook interface by running:
yarn run storybook
It will start a local webserver served at http://localhost:6006/
.
Adding and editing icons
- Add icons to
assets/svgs/
. - Run
yarn svgson
to update the icon internal data file in src/Icon/icons.js
. - Create a new release of OUI
Test in Optimizely.git
cd ~/react-oui-icons
npm link
cd ~/optimizely
npm link react-oui-icons
- Use
?use_local_bundle=true
to test your icon changes before releasing with confidence
Release new version of react-oui-icons
- Commit changes, push, create PR, get approval, squash & merge...
npm run release patch
or npm run release minor
or npm run release major
- OUI will automatically bump the react-oui-icons
^0.0.x
releases, so you will need to create a new release of OUI if your icon changes include minor or major changes.