UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

13 lines (12 loc) 392 B
import type { Snippet } from 'svelte'; interface Props { 'data-color'?: 'info' | 'success' | 'warning' | 'danger' | 'neutral'; 'data-size'?: 'sm' | 'md' | 'lg'; 'data-icon'?: true | false; class?: string; children?: Snippet; [key: string]: unknown; } declare const Tag: import("svelte").Component<Props, {}, "">; type Tag = ReturnType<typeof Tag>; export default Tag;