@s-ui/react-icons
Version:
ReactJS SUI SVG iconset
33 lines • 1.4 kB
JavaScript
import React from 'react';
import { jsx as _jsx } from "react/jsx-runtime";
export default function (_ref) {
var _ref$size = _ref.size,
size = _ref$size === void 0 ? 32 : _ref$size,
_ref$strokeColor = _ref.strokeColor,
strokeColor = _ref$strokeColor === void 0 ? 'blue' : _ref$strokeColor,
_ref$strokeWidth = _ref.strokeWidth,
strokeWidth = _ref$strokeWidth === void 0 ? 0 : _ref$strokeWidth,
_ref$fillColor = _ref.fillColor,
fillColor = _ref$fillColor === void 0 ? '#bada55' : _ref$fillColor,
_ref$svgClass = _ref.svgClass,
svgClass = _ref$svgClass === void 0 ? 'sui-SVGicon' : _ref$svgClass;
var inlineStyling = {
fill: fillColor,
stroke: strokeColor,
strokeWidth: strokeWidth
};
return /*#__PURE__*/_jsx("svg", {
className: svgClass,
height: size,
style: inlineStyling,
viewBox: "0 0 24 24",
width: size,
xmlns: "http://www.w3.org/2000/svg",
children: /*#__PURE__*/_jsx("g", {
fillRule: "evenodd",
children: /*#__PURE__*/_jsx("path", {
d: "M12 1.75C6.34 1.75 1.75 6.34 1.75 12S6.34 22.25 12 22.25 22.25 17.66 22.25 12C22.244 6.341 17.659 1.756 12 1.75zM20.75 12A8.75 8.75 0 1 1 12 3.25 8.76 8.76 0 0 1 20.75 12zm-4.86-3.06l-5.71 6.32a.25.25 0 0 1-.35 0l-2.66-2.82a.75.75 0 0 0-1.06 1.06l2.66 2.82a1.75 1.75 0 0 0 2.47 0L16.95 10a.75.75 0 1 0-1.06-1.06z"
})
})
});
}