@s-ui/react-icons
Version:
ReactJS SUI SVG iconset
31 lines • 1.51 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: "M1.16 0c-.72.72-1.16 1.71-1.16 2.81s.43 2.12 1.16 2.84l.72-.72c-.54-.54-.88-1.29-.88-2.13 0-.83.33-1.55.88-2.09l-.72-.72zm5.69 0l-.72.72c.54.54.88 1.26.88 2.09 0 .83-.33 1.58-.88 2.13l.72.72c.72-.72 1.16-1.74 1.16-2.84 0-1.1-.43-2.09-1.16-2.81zm-4.25 1.41c-.36.36-.59.86-.59 1.41 0 .55.23 1.08.59 1.44l.69-.72c-.18-.18-.28-.44-.28-.72 0-.28.1-.5.28-.69l-.69-.72zm2.81 0l-.69.72c.18.18.28.41.28.69 0 .28-.1.54-.28.72l.69.72c.36-.36.59-.89.59-1.44 0-.55-.23-1.05-.59-1.41z",
transform: "translate(0 1)"
})
});
}