UNPKG

@dfinity/gix-components

Version:
12 lines (11 loc) 335 B
import type { Snippet } from "svelte"; interface Props { children: Snippet; tagName?: "span" | "li"; intent?: "warning" | "success" | "error" | "info"; size?: "medium" | "large"; testId?: string; } declare const Tag: import("svelte").Component<Props, {}, "">; type Tag = ReturnType<typeof Tag>; export default Tag;