import classNames from 'classnames' export interface IVStatusPillProps { kind: 'danger' | 'success' | 'warn' | 'info' label: string } export default function IVStatusPill({ kind, label }: IVStatusPillProps) { return ( {label} ) }