box-ui-elements
Version:
Box UI Elements
28 lines • 1.08 kB
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const MetadataSharedBadge = ({
className = '',
height = 16,
title,
width = 16
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `metadata-shared-badge ${className}`,
height: height,
title: title,
viewBox: "0 0 16 16",
width: width
}, /*#__PURE__*/React.createElement("g", {
fill: "none",
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("circle", {
cx: "8",
cy: "8",
fill: "#D9E7F9",
r: "7.5",
stroke: "#4D91E2"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.715 7A2.57 2.57 0 0 1 13 9.605v1.145a.25.25 0 0 1-.25.25h-3.5a.25.25 0 0 1-.25-.25V9.5a2.465 2.465 0 0 0-.38-1.34.25.25 0 0 1 0-.3A2.5 2.5 0 0 1 10.715 7zm-.215-.5a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zm-5 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zm-.245.5A2.5 2.5 0 0 1 8 9.5v1.25a.25.25 0 0 1-.25.25h-4.5a.25.25 0 0 1-.25-.25V9.605A2.575 2.575 0 0 1 5.255 7z",
fill: "#4F92DF"
})));
export default MetadataSharedBadge;
//# sourceMappingURL=MetadataSharedBadge.js.map