Package Exports
- @instructure/ui-tag
- @instructure/ui-tag/es/index.js
- @instructure/ui-tag/lib/Tag
- @instructure/ui-tag/lib/Tag/index.js
- @instructure/ui-tag/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@instructure/ui-tag) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
category: packages
ui-tag
A tag component.
Components
The ui-tag package contains the following:
Installation
npm install @instructure/ui-tagUsage
---
example: false
---
import React from 'react'
import { Tag } from '@instructure/ui-tag'
const MyTag = () => {
return (
<Tag text="Hello world" />
)
}