UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

8 lines 452 B
import React from 'react'; import classNames from 'classnames'; export const AvatarContainer = ({ className, tag = 'div', testId, ...attributes }) => { const Tag = tag; const wrapperClasses = classNames('d-flex align-items-center justify-content-around flex-wrap flex-sm-nowrap', className); return React.createElement(Tag, { ...attributes, className: wrapperClasses, "data-testid": testId }); }; //# sourceMappingURL=AvatarContainer.js.map