UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

11 lines (10 loc) 296 B
import type { Snippet } from 'svelte'; type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6; interface Props { headingLevel?: HeadingLevel; class?: string; id?: string; children?: Snippet; } declare const HeadingLevel: import("svelte").Component<Props, {}, "">; export default HeadingLevel;