UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

11 lines 528 B
import React from 'react'; import classname from 'classnames'; import { Col, Container, Row } from 'reactstrap'; export const HeroBody = ({ children, className, testId }) => { const classes = classname('it-hero-text-wrapper', 'bg-dark', className); return (React.createElement(Container, null, React.createElement(Row, null, React.createElement(Col, null, React.createElement("div", { className: classes, "data-testid": testId }, children))))); }; //# sourceMappingURL=HeroBody.js.map