Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 403 Bytes

File metadata and controls

27 lines (20 loc) · 403 Bytes

Taskany Icons

This package contains icons as React components Usage only with @taskany/bricks

Install

$ npm i -S @taskany/icons

Usage

import { Icon360Outline } from '@taskany/icons'

const MyComponent = () => {
    ...
    return (
        <>
            ...
            <Icon360Outline noWrap size="m" />
        </>
    );
};