Use Pills to communicate concise status with an identifiable color and supportive text.
The ui-pill
package contains the following:
npm install @instructure/ui-pill
---
type: code
---
import React from 'react'
import { Pill } from '@instructure/ui-pill'
const MyPill = () => {
return (
<Pill
color="info"
margin="x-small"
>
Draft
</Pill>
)
}