UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

10 lines (9 loc) 300 B
import { FC, HTMLAttributes } from 'react'; export interface ThumbNavItemProps extends HTMLAttributes<HTMLLIElement> { active?: boolean; targetUrl?: string; imageUrl: string; actionDescription?: string; testId?: string; } export declare const ThumbNavItem: FC<ThumbNavItemProps>;