@mattilsynet/designsystem-svelte
Version:
Design system for Mattilsynet
13 lines (12 loc) • 330 B
TypeScript
import type { Snippet } from 'svelte';
interface Props {
for: string;
class?: string;
textOptional?: string;
isRequired?: boolean;
showOptionalText?: boolean;
children?: Snippet;
}
declare const Label: import("svelte").Component<Props, {}, "">;
type Label = ReturnType<typeof Label>;
export default Label;