Sha256: f20e459e00e699253cbd62f894e8b8b87ec7e3ef262d87e67d801500c08c7bb9
Contents?: true
Size: 935 Bytes
Versions: 94
Compression:
Stored size: 935 Bytes
Contents
import React from 'react' import { LabelPill } from '../../' const LabelPillDefault = (props) => ( <> <LabelPill label="Service Needed" pillValue="76" {...props} /> <LabelPill label="Waiting" pillValue="69" variant="success" {...props} /> <LabelPill label="In Service" pillValue="28" variant="error" {...props} /> <LabelPill label="Fully Serviced" pillValue="101" variant="warning" {...props} /> <LabelPill label="Inbox" pillValue="197" variant="info" {...props} /> <LabelPill label="Outbox" pillValue="13" variant="neutral" {...props} /> <LabelPill label="Inbox" pillValue="218" variant="primary" {...props} /> </> ) export default LabelPillDefault
Version data entries
94 entries across 94 versions & 1 rubygems