design-react-kit
Version:
Componenti React per Bootstrap 5
6 lines • 360 B
JavaScript
import React from 'react';
import { Badge as BadgeReact } from 'reactstrap';
export const Badge = ({ color = 'secondary', pill = false, tag = 'span', children, testId, ...attributes }) => {
return (React.createElement(BadgeReact, { color: color, pill: pill, tag: tag, ...attributes, "data-testid": testId }, children));
};
//# sourceMappingURL=Badge.js.map