Skip to content

Commit

Permalink
fix: properly generate CheckCircleLightOutline icon from svg (#2869)
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-smith-tcril authored Dec 13, 2023
1 parent 207b89a commit e00cb74
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 35 deletions.
29 changes: 12 additions & 17 deletions icons/es5/CheckCircleLightOutline.js
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;
4 changes: 2 additions & 2 deletions icons/es5/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,8 @@ export { default as Check } from "./Check";
export { default as CheckBoxIcon } from "./CheckBoxIcon";
export { default as CheckBoxOutlineBlank } from "./CheckBoxOutlineBlank";
export { default as CheckCircle } from "./CheckCircle";
export { default as CheckCircleOutline } from "./CheckCircleOutline";
export { default as CheckCircleLightOutline } from "./CheckCircleLightOutline";
export { default as CheckCircleOutline } from "./CheckCircleOutline";
export { default as Checklist } from "./Checklist";
export { default as ChecklistRtl } from "./ChecklistRtl";
export { default as Checkroom } from "./Checkroom";
Expand Down Expand Up @@ -2302,4 +2302,4 @@ export { default as Zoom } from "./Zoom";
export { default as ZoomIn } from "./ZoomIn";
export { default as ZoomInMap } from "./ZoomInMap";
export { default as ZoomOut } from "./ZoomOut";
export { default as ZoomOutMap } from "./ZoomOutMap";
export { default as ZoomOutMap } from "./ZoomOutMap";
25 changes: 9 additions & 16 deletions icons/jsx/CheckCircleLightOutline.jsx
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;
13 changes: 13 additions & 0 deletions icons/svg/check_circle_light_outline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e00cb74

Please sign in to comment.