@mattilsynet/designsystem-svelte
Version:
Design system for Mattilsynet
16 lines (15 loc) • 512 B
TypeScript
interface Props {
headingId: string;
title: string;
intro?: string;
text?: string;
linkUrl?: string;
linkText?: string;
type?: 'task' | 'form-intro-module' | 'legal-text' | 'highlighted-link' | '';
class?: string;
headerTag?: 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
iconClass?: 'info-icon' | 'warning-icon' | 'task-icon' | '';
}
declare const CardArticle: import("svelte").Component<Props, {}, "">;
type CardArticle = ReturnType<typeof CardArticle>;
export default CardArticle;