UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

14 lines (13 loc) 436 B
import React from "react"; export interface ChipProps { label: string; color?: "primary" | "secondary" | "success" | "warning" | "error" | "info" | "default" | "neutral"; selectable?: boolean; selected?: boolean; size?: "xsmall" | "small" | "medium" | "large"; icon?: React.ReactNode; avatarUrl?: string; onClick?: () => void; onRemove?: () => void; } export declare const Chip: React.FC<ChipProps>;