clarity-icons-svg
v0.2.0
Published
Raw svg icons from project clarity made by VMware.
Downloads
21
Readme
Clarity Icons
Raw svg icons from project clarity made by VMware.
Getting started
Install
$ npm install clarity-icons-svg --save
Usage with CRA
import { ReactComponent as CogIcon } from 'clarity-icons-svg/core/cog-line.svg';
const MyComponent = () => {
<div style={{ color: 'red', fontSize: 24 }}>
<CogIcon />
</div>;
};