-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2666 from openedx/master
sync: master to alpha
- Loading branch information
Showing
4 changed files
with
52 additions
and
1 deletion.
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 |
---|---|---|
@@ -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; |
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 |
---|---|---|
@@ -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; |
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