UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

9 lines (8 loc) 350 B
import { FC, AnchorHTMLAttributes } from 'react'; export interface ForwardProps extends AnchorHTMLAttributes<HTMLAnchorElement> { /** Classi aggiuntive da usare per il componente Forward */ className?: string; /** Riferimento al nodo a cui scorrere quando premuto */ testId?: string; } export declare const Forward: FC<ForwardProps>;