UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

16 lines (15 loc) 474 B
import type { FooterIconProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [FooterIconProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L754) * ## Props * @prop children * @prop href * @prop ariaLabel * @prop class: className * @prop ...restProps */ declare const FooterIcon: import("svelte").Component<FooterIconProps, {}, "">; type FooterIcon = ReturnType<typeof FooterIcon>; export default FooterIcon;