UNPKG

@dfinity/gix-components

Version:
10 lines (9 loc) 272 B
import type { Snippet } from "svelte"; interface Props { href: string; alt?: string; children?: Snippet; } declare const ExternalLink: import("svelte").Component<Props, {}, "">; type ExternalLink = ReturnType<typeof ExternalLink>; export default ExternalLink;