Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118956434
Badge.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jun 23, 07:30
Size
703 B
Mime Type
text/x-java
Expires
Wed, Jun 25, 07:30 (2 d)
Engine
blob
Format
Raw Data
Handle
26949520
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Badge.js
View Options
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;
Event Timeline
Log In to Comment