-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: properly generate CheckCircleLightOutline icon from svg (#2869)
- Loading branch information
1 parent
207b89a
commit e00cb74
Showing
4 changed files
with
36 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,16 @@ | ||
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } | ||
import * as React from "react"; | ||
|
||
const SvgCheckCircleOutline = props => /*#__PURE__*/React.createElement("svg", { | ||
width: "57", | ||
height: "57", | ||
const SvgCheckCircleLightOutline = props => /*#__PURE__*/React.createElement("svg", _extends({ | ||
width: 24, | ||
height: 24, | ||
viewBox: "0 0 57 57", | ||
fill: "none", | ||
xmlns: "http://www.w3.org/2000/svg", | ||
}, React.createElement("circle", { | ||
cx: "28.5", | ||
cy: "28.5", | ||
r: "26.5", | ||
stroke: "#00262B", | ||
strokeWidth: "3", | ||
}), React.createElement("path", { | ||
d: "M12.658 29.9736L22.2369 39.5525L44.3422 17.4473", | ||
stroke: "#00262B", | ||
strokeWidth: "3", | ||
xmlns: "http://www.w3.org/2000/svg" | ||
}, props), /*#__PURE__*/React.createElement("path", { | ||
d: "M28.5.5C13.054.5.5 13.054.5 28.5s12.554 28 28 28 28-12.554 28-28-12.554-28-28-28zm0 3c13.825 0 25 11.175 25 25s-11.175 25-25 25-25-11.175-25-25 11.175-25 25-25z", | ||
fill: "currentColor" | ||
}), /*#__PURE__*/React.createElement("path", { | ||
d: "M43.281 16.387 22.236 37.432l-8.517-8.52-2.121 2.123 10.638 10.639 23.166-23.166Z", | ||
fill: "currentColor" | ||
})); | ||
|
||
export default SvgCheckCircleOutline; | ||
export default SvgCheckCircleLightOutline; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,21 @@ | ||
import * as React from "react"; | ||
|
||
const CheckCircleLightOutline = (props) => ( | ||
const SvgCheckCircleLightOutline = (props) => ( | ||
<svg | ||
width="57" | ||
height="57" | ||
width={24} | ||
height={24} | ||
viewBox="0 0 57 57" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
> | ||
<circle | ||
cx="28.5" | ||
cy="28.5" | ||
r="26.5" | ||
stroke="#00262B" | ||
stroke-width="3" | ||
<path | ||
d="M28.5.5C13.054.5.5 13.054.5 28.5s12.554 28 28 28 28-12.554 28-28-12.554-28-28-28zm0 3c13.825 0 25 11.175 25 25s-11.175 25-25 25-25-11.175-25-25 11.175-25 25-25z" | ||
fill="currentColor" | ||
/> | ||
<path | ||
d="M12.658 29.9736L22.2369 39.5525L44.3422 17.4473" | ||
stroke="#00262B" | ||
stroke-width="3" | ||
d="M43.281 16.387 22.236 37.432l-8.517-8.52-2.121 2.123 10.638 10.639 23.166-23.166Z" | ||
fill="currentColor" | ||
/> | ||
</svg> | ||
|
||
); | ||
|
||
export default CheckCircleLightOutline; | ||
export default SvgCheckCircleLightOutline; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.