@s-ui/react-icons
Version:
ReactJS SUI SVG iconset
30 lines • 1.3 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 8 8",
width: size,
xmlns: "http://www.w3.org/2000/svg",
children: /*#__PURE__*/_jsx("path", {
d: "M3.75 0c-1.38 0-2.66.4-3.75 1.09l.53.81c.93-.59 2.03-.91 3.22-.91 1.2 0 2.32.31 3.25.91l.53-.81c-1.09-.7-2.4-1.09-3.78-1.09zm0 3c-.79 0-1.5.23-2.13.63l.53.84c.47-.3 1-.47 1.59-.47.59 0 1.16.17 1.63.47l.53-.84c-.62-.39-1.37-.63-2.16-.63zm0 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
})
});
}