box-ui-elements
Version:
Box UI Elements
26 lines • 1.03 kB
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconUnsync = ({
className = '',
color = '#444',
height = 16,
title,
width = 16
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-unsync ${className}`,
height: height,
title: title,
viewBox: "0 0 16 16",
width: width
}, /*#__PURE__*/React.createElement("g", {
className: "fill-color",
fill: color
}, /*#__PURE__*/React.createElement("path", {
d: "M10.9 7.8l1.4-1.5c.2-.2.2-.5 0-.7-.2-.2-.5-.2-.7 0l-1.3 1.5.6.7zM8.2 9.3l-.6.7-2.2-2.3c-.2-.2-.5-.2-.7 0s-.2.5 0 .7l2.6 2.7c.2.2.5.2.7 0l1-1-.8-.8z"
})), /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M8 .5C3.9.5.5 3.9.5 8s3.4 7.5 7.5 7.5 7.5-3.4 7.5-7.5S12.1.5 8 .5zM14.5 8c0 1.4-.4 2.6-1.1 3.7l-9-9c1-.7 2.3-1.1 3.7-1.1 3.5-.1 6.4 2.8 6.4 6.4zM8 14.5c-3.6 0-6.5-2.9-6.5-6.5 0-1.9.8-3.5 2.1-4.7L8 7.7l4.8 4.8c-1.3 1.2-2.9 2-4.8 2z",
fill: color
}));
export default IconUnsync;
//# sourceMappingURL=IconUnsync.js.map