mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
17 lines (16 loc) • 524 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import type { DeepPartial } from '../../';
export interface FlowbiteFooterBrandTheme {
base: string;
img: string;
span: string;
}
export interface FooterBrandProps extends PropsWithChildren {
alt?: string;
className?: string;
href?: string;
name?: string;
src: string;
theme?: DeepPartial<FlowbiteFooterBrandTheme>;
}
export declare const FooterBrand: FC<FooterBrandProps & ComponentProps<'a'> & ComponentProps<'img'>>;