From 5ef216f8c364a95d1004efb1c80bac945ce18eb1 Mon Sep 17 00:00:00 2001 From: SundasNoreen Date: Wed, 27 Sep 2023 16:51:53 +0500 Subject: [PATCH] feat: added new icon in es5 and jsx --- icons/es5/CheckCircleLightOutline.js | 21 ++++++++++++++++++++ icons/es5/index.js | 3 ++- icons/jsx/CheckCircleLightOutline.jsx | 28 +++++++++++++++++++++++++++ icons/jsx/index.jsx | 1 + 4 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 icons/es5/CheckCircleLightOutline.js create mode 100644 icons/jsx/CheckCircleLightOutline.jsx diff --git a/icons/es5/CheckCircleLightOutline.js b/icons/es5/CheckCircleLightOutline.js new file mode 100644 index 0000000000..52e7028243 --- /dev/null +++ b/icons/es5/CheckCircleLightOutline.js @@ -0,0 +1,21 @@ +import * as React from "react"; + +const SvgCheckCircleOutline = props => /*#__PURE__*/React.createElement("svg", { + width: "57", + height: "57", + 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", +})); + +export default SvgCheckCircleOutline; diff --git a/icons/es5/index.js b/icons/es5/index.js index 3caaaa6c91..1ea8dda060 100644 --- a/icons/es5/index.js +++ b/icons/es5/index.js @@ -473,6 +473,7 @@ 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 Checklist } from "./Checklist"; export { default as ChecklistRtl } from "./ChecklistRtl"; export { default as Checkroom } from "./Checkroom"; @@ -2300,4 +2301,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"; \ No newline at end of file +export { default as ZoomOutMap } from "./ZoomOutMap"; diff --git a/icons/jsx/CheckCircleLightOutline.jsx b/icons/jsx/CheckCircleLightOutline.jsx new file mode 100644 index 0000000000..571324c77e --- /dev/null +++ b/icons/jsx/CheckCircleLightOutline.jsx @@ -0,0 +1,28 @@ +import * as React from "react"; + +const CheckCircleLightOutline = (props) => ( + + + + + +); + +export default CheckCircleLightOutline; diff --git a/icons/jsx/index.jsx b/icons/jsx/index.jsx index ff83e31e90..bd57a1e1c7 100644 --- a/icons/jsx/index.jsx +++ b/icons/jsx/index.jsx @@ -472,6 +472,7 @@ 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 CheckCircleLightOutline } from "./CheckCircleLightOutline"; export { default as CheckCircleOutline } from "./CheckCircleOutline"; export { default as Checklist } from "./Checklist"; export { default as ChecklistRtl } from "./ChecklistRtl";