UNPKG

flowbite-svelte-illustrations

Version:

A collection of free and open-source collection of SVG illustrations.

20 lines (19 loc) 625 B
import type { TitleType, DescType } from './types'; import type { SVGAttributes } from 'svelte/elements'; interface Props extends SVGAttributes<SVGElement> { color1?: string; color2?: string; color3?: string; color4?: string; color5?: string; color6?: string; color7?: string; ariaLabel?: string; class?: string; height?: string; title?: TitleType; desc?: DescType; } declare const Laptop404NotFoundErrorDark: import("svelte").Component<Props, {}, "">; type Laptop404NotFoundErrorDark = ReturnType<typeof Laptop404NotFoundErrorDark>; export default Laptop404NotFoundErrorDark;