Autodesk tool icons have a distinctive style. Although they don’t need to communicate complex interactions, the HIG icons should complement these icons, and look like they belong to the same family of products.
Read more about where and how to use icons on the website.
yarn add @hig/icon
import Icon from '@hig/icon';
import '@hig/icon/build/index.css';
Use the name
prop to render a provided icon by name.
<Icon name="assets" />
<Icon name="assets" size="16" />
import myIcon from 'my-icon.svg';
function MyComponent() {
return <Icon svg={myIcon} />
}