UNPKG

flowbite-svelte-illustrations

Version:

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

24 lines (23 loc) 695 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; color8?: string; color9?: string; color10?: string; color11?: string; ariaLabel?: string; class?: string; height?: string; title?: TitleType; desc?: DescType; } declare const ManWorkingProgramsDark: import("svelte").Component<Props, {}, "">; type ManWorkingProgramsDark = ReturnType<typeof ManWorkingProgramsDark>; export default ManWorkingProgramsDark;