UNPKG

@dfinity/gix-components

Version:
11 lines (10 loc) 352 B
/// <reference types="svelte" /> import type { ChipGroupItem } from "../types/chip-group"; interface Props { chips?: ChipGroupItem[]; testId?: string; onSelect?: (selectedId: string) => void; } declare const ChipGroup: import("svelte").Component<Props, {}, "chips">; type ChipGroup = ReturnType<typeof ChipGroup>; export default ChipGroup;