UNPKG

@dfinity/gix-components

Version:
10 lines (9 loc) 283 B
import { type Snippet } from "svelte"; interface Props { testId?: string; segmentId: symbol; children: Snippet; } declare const SegmentButton: import("svelte").Component<Props, {}, "">; type SegmentButton = ReturnType<typeof SegmentButton>; export default SegmentButton;