Skip to content

Commit

Permalink
Merge pull request #2666 from openedx/master
Browse files Browse the repository at this point in the history
sync: master to alpha
  • Loading branch information
edx-requirements-bot authored and PKulkoRaccoonGang committed Aug 1, 2024
2 parents 15f469d + b081084 commit 7802564
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 1 deletion.
21 changes: 21 additions & 0 deletions icons/es5/CheckCircleLightOutline.js
Original file line number Diff line number Diff line change
@@ -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;
3 changes: 2 additions & 1 deletion icons/es5/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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";
export { default as ZoomOutMap } from "./ZoomOutMap";
28 changes: 28 additions & 0 deletions icons/jsx/CheckCircleLightOutline.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import * as React from "react";

const CheckCircleLightOutline = (props) => (
<svg
width="57"
height="57"
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="M12.658 29.9736L22.2369 39.5525L44.3422 17.4473"
stroke="#00262B"
stroke-width="3"
/>
</svg>

);

export default CheckCircleLightOutline;
1 change: 1 addition & 0 deletions icons/jsx/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 7802564

Please sign in to comment.