@mattilsynet/designsystem-svelte
Version:
Design system for Mattilsynet
15 lines (14 loc) • 360 B
TypeScript
interface Issue {
title?: string;
text?: string;
href?: string;
}
interface Props {
title?: string;
headingClass?: string;
headerTag?: 'h2' | 'h3' | 'h4';
issues?: Issue[];
}
declare const CurrentIssues: import("svelte").Component<Props, {}, "">;
type CurrentIssues = ReturnType<typeof CurrentIssues>;
export default CurrentIssues;