UNPKG

@teamsnap/teamsnap-ui

Version:

a CSS component library for TeamSnap

9 lines (8 loc) 285 B
import * as React from 'react'; import { PillStatus } from '../Pill'; declare type Props = { status?: PillStatus.ACTIVE | PillStatus.ERROR; children: React.ReactNode; }; declare const AttachmentPill: ({ status, children }: Props) => JSX.Element; export default AttachmentPill;