@redocly/theme
Version:
Shared UI components lib
9 lines (8 loc) • 306 B
TypeScript
import type { JSX } from 'react';
import type { ResolvedNavItem } from '@redocly/config';
export type FooterItemProps = {
item: ResolvedNavItem;
iconsOnly?: boolean;
className?: string;
};
export declare function FooterItem({ item, iconsOnly, className }: FooterItemProps): JSX.Element | null;