Getting Started
- Add icons to
src
directory. - Update the version in the root
package.json
. - Build the packages:
npm run build
oryarn build
. - Publish the packages:
npm run release
oryarn release
.
Linking to a Local React App
Here's how to link your local version of @pegasus/react-icons to the react app you're developing locally:
cd build/react-icons
yarn link
- Navigate to your consuming app and run
yarn link "@pegasus/react-icons"