UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

8 lines 364 B
import React from 'react'; import classNames from 'classnames'; export const ChipLabel = ({ className, tag = 'span', testId, ...attributes }) => { const Tag = tag; const classes = classNames(className, 'chip-label'); return React.createElement(Tag, { ...attributes, className: classes, "data-testid": testId }); }; //# sourceMappingURL=ChipLabel.js.map