README
wasabi
Cloud Academy SVGs repository for React applications, the aim is to use as icon archive for our internal projects.
howto
- First
yarn
for installing all dependencies - When a new icon in SVG format is placed into the proper folder (atm we have a legacy and bonsai one so put them in
/icons/bonsai/svgs/
or/icons/legacy/svgs/
) runyarn build
for generating all files needed. - Open PR and point it to
master
branch and wait for new release on npm.
how to use
For use a single icon svg data
import bookmark from '@cloudacademy/wasabi/lib/legacy/bookmark';
import { Icon } from '@cloudacademy/bonsai;
and use with Bonsai Icon
component with
<Icon icon={bookmark} />