UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

8 lines (7 loc) 282 B
import { ElementType, FC, HTMLAttributes } from 'react'; export interface HeroTitleProps extends HTMLAttributes<HTMLSpanElement> { /** Indica il tag da utilizzare per il titolo */ tag?: ElementType; testId?: string; } export declare const HeroTitle: FC<HeroTitleProps>;