import type {HeaderTitleProps} from '@givewp/forms/propTypes';

/**
 * @since 3.0.0
 */
export default function HeaderTitle({text}: HeaderTitleProps) {
    return <h2>{text}</h2>;
}
