Skip to content

renaudtertrais/clarity-icons-svg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Clarity Icons

Raw svg icons from project clarity made by VMware.

List of the icons.

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>;
};