UNPKG

@bytebeans/macaw-ui

Version:

Saleor's UI component library

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