@s-ui/react-icons
Version:
ReactJS SUI SVG iconset
30 lines • 1.29 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.31 0a.5.5 0 0 0-.19.84l.63.63-3.59 3.66-.16.16v2.7199999999999998h2.69l.16-.16 3.66-3.66.63.66a.5.5 0 1 0 .72-.69l-.94-.94.66-.66c.59-.58.59-1.54 0-2.13-.57-.57-1.56-.57-2.13 0l-.66.66-.94-.94a.5.5 0 0 0-.47-.16.5.5 0 0 0-.06 0zm1.16 2.19l1.31 1.31-3.16 3.16-1.28-1.31 3.13-3.16z"
})
});
}