UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

13 lines (12 loc) 419 B
import { FC, HTMLAttributes } from 'react'; export interface ThumbNavProps extends HTMLAttributes<HTMLUListElement> { fixedWidth?: boolean; isSmall?: boolean; isVertical?: boolean; noZoomOnHover?: boolean; overlayOnHover?: 'black' | 'primary'; position?: 'top' | 'right' | 'bottom' | 'left'; rowItems?: 2 | 3 | 4 | 5; testId?: string; } export declare const ThumbNav: FC<ThumbNavProps>;