UNPKG

@dfinity/gix-components

Version:
11 lines (10 loc) 267 B
/// <reference types="svelte" /> interface Props { label: string; id: string; selected: boolean; onClick: (id: string) => void; } declare const Chip: import("svelte").Component<Props, {}, "">; type Chip = ReturnType<typeof Chip>; export default Chip;