design-react-kit
Version:
Componenti React per Bootstrap 5
7 lines • 330 B
JavaScript
import React from 'react';
import classname from 'classnames';
export const HeroTitle = ({ tag: Tag = 'h1', className, testId, ...attributes }) => {
const classes = classname(className);
return React.createElement(Tag, { ...attributes, className: classes, "data-testid": testId });
};
//# sourceMappingURL=HeroTitle.js.map