UNPKG

@wazespace/wme-react-components

Version:

A package with useful replications of the Waze Map Editor components to use in userscripts

16 lines 524 B
export type WzCheckableChipSize = 'sm' | 'md' | 'lg'; export interface WzCheckableChipProps { children: string; onChipClicked?(event: CustomEvent): void; onChipChanged?(event: CustomEvent): void; onRemoveClicked?(event: CustomEvent): void; showCheckIconWhenChecked?: boolean; checked?: boolean; value?: string | number; size?: WzCheckableChipSize; disabled?: boolean; readOnly?: boolean; isDragging?: boolean; removable?: boolean; } //# sourceMappingURL=CheckableChip.d.ts.map