UNPKG

@gzup/macaw-ui-4

Version:

Gzup's UI component library

9 lines (8 loc) 218 B
export type StatusChipSize = "md" | "lg"; export interface StatusChipProps { children?: null; className?: string; label: string; size?: StatusChipSize; variant: "success" | "warning" | "neutral" | "error"; }