design-react-kit
Version:
Componenti React per Bootstrap 5
12 lines (11 loc) • 427 B
TypeScript
import { FC, HTMLAttributes, PropsWithChildren } from 'react';
export interface MegamenuFooterProps extends HTMLAttributes<HTMLDivElement> {
/** Classi aggiuntive da usare per il componente Megamenu Footer */
className?: string;
vertical?: boolean;
}
export declare const MegamenuFooter: FC<MegamenuFooterProps> & {
Item: typeof Item;
};
declare const Item: FC<PropsWithChildren<HTMLAnchorElement>>;
export {};