UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

20 lines (19 loc) 529 B
import type { FooterBrandProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [FooterBrandProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L733) * ## Props * @prop children * @prop aClass * @prop spanClass * @prop imgClass * @prop href * @prop src * @prop alt * @prop name * @prop ...restProps */ declare const FooterBrand: import("svelte").Component<FooterBrandProps, {}, "">; type FooterBrand = ReturnType<typeof FooterBrand>; export default FooterBrand;