UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

12 lines (11 loc) 279 B
interface Props { linkText: any; href: any; class?: string; style?: string; linkStyle?: 'mt-link' | 'mt-button'; fileName?: string; } declare const Link: import("svelte").Component<Props, {}, "">; type Link = ReturnType<typeof Link>; export default Link;