design-react-kit
Version:
Componenti React per Bootstrap 5
13 lines • 579 B
JavaScript
import classname from 'classnames';
import React from 'react';
export const Hero = ({ tag: Tag = 'section', small, centered, overlay, overlap, className, testId, ...attributes }) => {
const classes = classname('it-hero-wrapper', className, {
'it-overlay': overlay,
['it-' + overlay]: overlay,
'it-hero-small-size': small,
'it-text-centered': centered,
'it-bottom-overlapping-content': overlap
});
return React.createElement(Tag, { className: classes, ...attributes, "data-testid": testId });
};
//# sourceMappingURL=Hero.js.map