design-react-kit
Version:
Componenti React per Bootstrap 5
8 lines • 394 B
JavaScript
import React from 'react';
import classNames from 'classnames';
export const CalloutTitle = ({ children, className, tag = 'div', testId, ...attributes }) => {
const Tag = tag;
const classes = classNames(className, 'callout-title');
return (React.createElement(Tag, { className: classes, ...attributes, "data-testid": testId }, children));
};
//# sourceMappingURL=CalloutTitle.js.map