@scaleflex/icons
Version:
SVG icons as React components
27 lines • 3.04 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var Approval = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Approval",
ref: ref,
width: size,
height: size,
viewBox: "0 0 48 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M23.9807 0.000610352C22.8737 0.000610352 21.8132 0.440145 21.0319 1.22154L17.6714 4.58201C17.5179 4.73549 17.2993 4.80759 17.083 4.7727L12.39 4.03084C11.297 3.85642 10.1807 4.12619 9.28534 4.77503C8.39232 5.42619 7.79232 6.40526 7.6179 7.49596L6.87604 12.189C6.84115 12.4053 6.70627 12.5913 6.51092 12.6913L2.27836 14.8471C1.29232 15.3494 0.545806 16.2239 0.203945 17.275C-0.137915 18.3262 -0.0472175 19.4727 0.455108 20.4564L2.61092 24.6913C2.71092 24.8867 2.71092 25.1146 2.61092 25.3099L0.455108 29.5448C-0.0472175 30.5285 -0.137915 31.675 0.203945 32.7262C0.545806 33.7774 1.29232 34.6518 2.27836 35.1541L6.51092 37.3099C6.70627 37.4099 6.84115 37.596 6.87604 37.8122L7.6179 42.5053C7.79232 43.596 8.39232 44.575 9.28534 45.2262C10.1807 45.875 11.297 46.1448 12.39 45.9704L17.083 45.2285C17.2993 45.1936 17.5179 45.2657 17.6714 45.4192L21.0319 48.7797C21.8132 49.5611 22.8737 50.0006 23.9807 50.0006C25.0877 50.0006 26.1481 49.5611 26.9295 48.7797L30.29 45.4192C30.4435 45.2657 30.6621 45.1936 30.8784 45.2285L35.5714 45.9704C36.6644 46.1448 37.7807 45.875 38.676 45.2262C39.5691 44.575 40.1691 43.596 40.3435 42.5053L41.0853 37.8122C41.1202 37.596 41.2551 37.4099 41.4505 37.3099L45.683 35.1541C46.6691 34.6518 47.4156 33.7774 47.7574 32.7262C48.0993 31.675 48.0086 30.5285 47.5063 29.5448L45.3505 25.3099C45.2505 25.1146 45.2505 24.8867 45.3505 24.6913L47.5063 20.4564C48.0086 19.4727 48.0993 18.3262 47.7574 17.275C47.4156 16.2239 46.6691 15.3494 45.683 14.8471L41.4505 12.6913C41.2551 12.5913 41.1202 12.4053 41.0853 12.189L40.3435 7.49596C40.1691 6.40526 39.5691 5.42619 38.676 4.77503C37.7807 4.12619 36.6644 3.85642 35.5714 4.03084L30.8784 4.7727C30.6621 4.80759 30.4435 4.73549 30.29 4.58201L26.9295 1.22154C26.1481 0.440145 25.0877 0.000610352 23.9807 0.000610352ZM14.6087 23.7679C13.9273 24.447 13.9273 25.5539 14.6087 26.233L20.0343 31.6609C20.7157 32.3423 21.8203 32.3423 22.5017 31.6609L33.3529 20.8074C34.0343 20.126 34.0343 19.0214 33.3529 18.34C32.6738 17.6609 31.5668 17.6609 30.8878 18.34L21.2668 27.9609L17.0738 23.7679C16.3947 23.0865 15.2878 23.0865 14.6087 23.7679Z",
fill: color
}));
});
export default Approval;