UNPKG

flowbite-svelte-illustrations

Version:

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

27 lines (26 loc) 777 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; color12?: string; color13?: string; color14?: string; ariaLabel?: string; class?: string; height?: string; title?: TitleType; desc?: DescType; } declare const ManWorkingQuestionMarkDark: import("svelte").Component<Props, {}, "">; type ManWorkingQuestionMarkDark = ReturnType<typeof ManWorkingQuestionMarkDark>; export default ManWorkingQuestionMarkDark;