UNPKG

@papernote/ui

Version:

A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive

8 lines 386 B
export interface StatusBadgeProps { status: 'paid' | 'pending' | 'overdue' | 'cancelled' | 'success' | 'warning' | 'error' | 'info'; label?: string; size?: 'sm' | 'md' | 'lg'; showIcon?: boolean; } export default function StatusBadge({ status, label, size, showIcon }: StatusBadgeProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=StatusBadge.d.ts.map