import React, { ElementType, FC, HTMLAttributes } from 'react'; import classname from 'classnames'; export interface HeroTitleProps extends HTMLAttributes { /** Indica il tag da utilizzare per il titolo */ tag?: ElementType; testId?: string; } export const HeroTitle: FC = ({ tag: Tag = 'h1', className, testId, ...attributes }) => { const classes = classname(className); return ; };