UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

16 lines (15 loc) 430 B
import type { SVGAttributes } from "svelte/elements"; interface Props extends SVGAttributes<SVGSVGElement> { class?: string; } /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * Props * ## Props * @prop class: className * @prop ...restProps */ declare const DoubleArrowIcon: import("svelte").Component<Props, {}, "">; type DoubleArrowIcon = ReturnType<typeof DoubleArrowIcon>; export default DoubleArrowIcon;