UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

8 lines (7 loc) 280 B
import { FC, HTMLAttributes } from 'react'; export interface TimelineProps extends HTMLAttributes<HTMLElement> { /** Classi aggiuntive da usare per il componente TimelineProps */ className?: string; testId?: string; } export declare const Timeline: FC<TimelineProps>;