UNPKG

@dfinity/gix-components

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