UNPKG

flowbite-svelte-illustrations

Version:

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

18 lines (17 loc) 547 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; ariaLabel?: string; class?: string; height?: string; title?: TitleType; desc?: DescType; } declare const StoreDiscountOpen: import("svelte").Component<Props, {}, "">; type StoreDiscountOpen = ReturnType<typeof StoreDiscountOpen>; export default StoreDiscountOpen;