mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
15 lines (14 loc) • 509 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import type { DeepPartial } from '../../';
export interface FlowbiteFooterIconTheme {
base: string;
size: string;
}
export interface FooterIconProps extends PropsWithChildren {
ariaLabel?: string;
className?: string;
href?: string;
icon: FC<ComponentProps<'svg'>>;
theme?: DeepPartial<FlowbiteFooterIconTheme>;
}
export declare const FooterIcon: FC<FooterIconProps & ComponentProps<'a'> & ComponentProps<'svg'>>;