You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
703 B
27 lines
703 B
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
import { useBootstrapPrefix } from './ThemeProvider';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
const defaultProps = {
|
|
bg: 'primary',
|
|
pill: false
|
|
};
|
|
const Badge = /*#__PURE__*/React.forwardRef(({
|
|
bsPrefix,
|
|
bg,
|
|
pill,
|
|
text,
|
|
className,
|
|
as: Component = 'span',
|
|
...props
|
|
}, ref) => {
|
|
const prefix = useBootstrapPrefix(bsPrefix, 'badge');
|
|
return /*#__PURE__*/_jsx(Component, {
|
|
ref: ref,
|
|
...props,
|
|
className: classNames(className, prefix, pill && `rounded-pill`, text && `text-${text}`, bg && `bg-${bg}`)
|
|
});
|
|
});
|
|
Badge.displayName = 'Badge';
|
|
Badge.defaultProps = defaultProps;
|
|
export default Badge; |