@igloo-ui/tag
v1.10.0
Published
The Tag component informs users of the status of an object or of an action that's been taken.
Downloads
46
Readme
Tag
The Tag component informs users of the status of an object or of an action that's been taken.
Installation
To install @igloo-ui/tag
in your project, you will need to run the following command using npm:
npm install @igloo-ui/tag
If you prefer Yarn, use the following command instead:
yarn add @igloo-ui/tag
Usage
Then to use the component in your code just import it!
import Tag from '@igloo-ui/tag';
import LabelSolid from '@igloo-ui/icons/dist/LabelSolid';
<Tag icon={<LabelSolid size="small" />} appearance="success" dismissible>
This is a tag
</Tag>;