UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

17 lines (16 loc) 443 B
import type { Snippet } from 'svelte'; interface Props { text: string; updatedDate?: string; publishedText?: string; actionsTakenByMattilsynet?: string; statusType: 'important' | 'none'; linkUrl: string; linkText: string; class?: string; lang?: string; heading?: Snippet; } declare const Status: import("svelte").Component<Props, {}, "">; type Status = ReturnType<typeof Status>; export default Status;