import * as React from 'react'; import Shield16 from '../../icon/line/Shield16'; import LabelPill, { LabelPillStatus, LabelPillSize } from './LabelPill'; import notes from './LabelPill.stories.md'; export const withText = () => ( TEST TEXT ); export const withIcon = () => ( ); export const withBoth = () => ( TEST TEXT ); export const severalComponents = () => (
BETA {' '} IN PROGRESS {' '} CONFIDENTIAL {' '} NEW {' '} DUE JUL 9 AT 11:59 PM {' '} SUCCESS {' '}
); export default { title: 'Components/LabelPill', subcomponents: { 'LabelPill.Pill': LabelPill.Pill, 'LabelPill.Text': LabelPill.Text, 'LabePill.Icon': LabelPill.Icon, }, parameters: { notes, }, };