UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

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