UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

15 lines (14 loc) 523 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../types'; export interface FlowbiteFooterIconTheme { base: string; size: string; } export interface FooterIconProps extends PropsWithChildren<unknown> { ariaLabel?: string; className?: string; href?: string; icon: FC<ComponentProps<'svg'>>; theme?: DeepPartial<FlowbiteFooterIconTheme>; } export declare const FooterIcon: FC<FooterIconProps & ComponentProps<'a'> & ComponentProps<'svg'>>;