UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

17 lines (16 loc) 538 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../types'; export interface FlowbiteFooterBrandTheme { base: string; img: string; span: string; } export interface FooterBrandProps extends PropsWithChildren<unknown> { alt?: string; className?: string; href?: string; name?: string; src: string; theme?: DeepPartial<FlowbiteFooterBrandTheme>; } export declare const FooterBrand: FC<FooterBrandProps & ComponentProps<'a'> & ComponentProps<'img'>>;