@dfinity/gix-components
Version:
A UI kit developed by the GIX team
11 lines (10 loc) • 352 B
TypeScript
/// <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;