Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync: master to alpha #2666

Merged
merged 2 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading