A set svg icons and utilities for creating custom ones.
npm install @fluentui/react-icons-northstar@fluentui/react-icons-northstarA set of reusable components and hooks to build component libraries and UI kits.
- Installation
- Icons
- createSvgIcon()
- Usage
NPM
``bash`
npm install --save @fluentui/react-icons-northstar
Yarn
`bash`
yarn add @fluentui/react-icons-northstar
A factory for creating svg icons.
#### Usage
The example below assumes an icon component called will be created in this way:
`tsx
const circleSvg = ({ classes }) => (
);
const CircleIcon = createSvgIcon({ svg: circleSvg, displayName: 'CircleIcon' });
``