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