Skip to content

Commit

Permalink
chore(svgs): Add CheckmarkCircleFill svg (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChefHutch authored Jul 21, 2021
1 parent 36a0437 commit 3c6e574
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";
import Svg from "../Svg";
import { SvgProps } from "../types";

const Icon: React.FC<SvgProps> = (props) => {
return (
<Svg viewBox="0 0 24 24" {...props}>
<path d="M12 2.75711C6.48 2.75711 2 7.23711 2 12.7571C2 18.2771 6.48 22.7571 12 22.7571C17.52 22.7571 22 18.2771 22 12.7571C22 7.23711 17.52 2.75711 12 2.75711ZM9.29 17.0471L5.7 13.4571C5.31 13.0671 5.31 12.4371 5.7 12.0471C6.09 11.6571 6.72 11.6571 7.11 12.0471L10 14.9271L16.88 8.04711C17.27 7.65711 17.9 7.65711 18.29 8.04711C18.68 8.43711 18.68 9.06711 18.29 9.45711L10.7 17.0471C10.32 17.4371 9.68 17.4371 9.29 17.0471Z" />
</Svg>
);
};

export default Icon;
1 change: 1 addition & 0 deletions packages/pancake-uikit/src/components/Svg/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export { default as CircleOutlineIcon } from "./Icons/CircleOutline";
export { default as ChartIcon } from "./Icons/Chart";
export { default as CheckmarkIcon } from "./Icons/Checkmark";
export { default as CheckmarkCircleIcon } from "./Icons/CheckmarkCircle";
export { default as CheckmarkCircleFillIcon } from "./Icons/CheckmarkCircleFill";
export { default as ChevronDownIcon } from "./Icons/ChevronDown";
export { default as ChevronLeftIcon } from "./Icons/ChevronLeft";
export { default as ChevronRightIcon } from "./Icons/ChevronRight";
Expand Down

0 comments on commit 3c6e574

Please sign in to comment.