@igloo-ui/tag
v2.0.0
Published
The Tag component informs users of the status of an object or of an action that's been taken.
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/tagIf you prefer Yarn, use the following command instead:
yarn add @igloo-ui/tagUsage
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>;