@scaleflex/icons
Version:
SVG icons as React components
27 lines • 2.47 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var BrushOutline = function BrushOutline(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 20 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "BrushOutline",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M42.1882 2.45669L42.196 2.53127L42.1882 2.45669C39.8988 2.69755 37.1583 4.21877 33.814 7.08507C27.7729 12.263 20.6529 21.1915 16.0581 27.6273C12.6906 27.1201 9.15199 28.5644 7.0523 31.1889C5.09468 33.6359 4.9557 35.9526 4.82547 38.1234L4.82526 38.1269C4.69791 40.2496 4.57764 42.2253 2.8073 44.0919C2.1404 44.7951 2.37826 45.9502 3.2699 46.3319C6.2493 47.6074 9.64087 47.847 12.7329 47.2981C15.8241 46.7493 18.6234 45.4111 20.4145 43.5224C22.5914 41.2272 23.7821 37.8429 23.203 34.6464C29.5541 29.7702 38.3135 22.2683 43.2805 16.0388C46.0349 12.5843 47.4447 9.79172 47.5669 7.50673C47.7325 4.41495 45.3292 2.12655 42.1882 2.45669ZM18.3926 41.6046C17.203 42.859 15.2862 43.8565 13.0732 44.3826C10.8919 44.9011 8.42929 44.9599 6.10402 44.3593C7.36022 42.307 7.47529 40.3562 7.58444 38.506L7.5847 38.5015C7.70021 36.5432 7.8104 34.7023 9.22831 32.9299C11.514 30.0729 16.102 29.2841 18.7593 31.9415C20.3154 33.4977 20.7311 35.3755 20.5045 37.1343C20.2776 38.8957 19.4065 40.5356 18.3926 41.6046ZM42.4798 5.22826L42.472 5.15367L42.4798 5.22826C43.203 5.15209 43.796 5.3426 44.1985 5.71798C44.6009 6.09325 44.8215 6.66133 44.7842 7.35774C44.7114 8.72016 43.8949 10.4196 42.6311 12.2659C41.3693 14.1093 39.6695 16.0882 37.8456 18.0074C34.1982 21.8454 30.0606 25.4382 27.9536 27.222C26.3996 28.5 23.1637 31.1429 22.2053 31.8946C21.4342 30.5421 20.2659 29.3305 18.8281 28.5491C19.5506 27.5585 22.0979 24.2104 23.3335 22.5981C25.0672 20.4031 28.4765 16.2023 32.1454 12.4777C33.98 10.6153 35.8779 8.87347 37.6625 7.56137C39.4496 6.24739 41.113 5.37199 42.4798 5.22826Z",
fill: color,
stroke: color,
strokeWidth: "0.15"
}));
};
export default BrushOutline;