mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
14 lines (13 loc) • 520 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import type { DeepPartial } from '../../';
import type { FlowbiteFooterLinkTheme } from './FooterLink';
export interface FlowbiteFooterLinkGroupTheme {
base: string;
link: FlowbiteFooterLinkTheme;
col: string;
}
export interface FooterLinkGroupProps extends PropsWithChildren, ComponentProps<'ul'> {
col?: boolean;
theme?: DeepPartial<FlowbiteFooterLinkGroupTheme>;
}
export declare const FooterLinkGroup: FC<FooterLinkGroupProps>;