Skip to content

Commit

Permalink
XS-25 feat(purchase-guests): adds CircleCheckFilledIcon and `Warnin…
Browse files Browse the repository at this point in the history
…gFilledIcon`
  • Loading branch information
kirtesh-xola committed Feb 29, 2024
1 parent bf29f2b commit ac5d031
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export { ChevronRightIcon } from "./src/ChevronRightIcon";
export { ChevronUpIcon } from "./src/ChevronUpIcon";
export { ChipIcon } from "./src/ChipIcon";
export { CircleCheckIcon } from "./src/CircleCheckIcon";
export { CircleCheckFilledIcon } from "./src/CircleCheckFilledIcon";
export { CircleCrossIcon } from "./src/CircleCrossIcon";
export { CircleCrossImage } from "./src/images/CircleCrossImage";
export { CircleCrownIcon } from "./src/CircleCrownIcon";
Expand Down Expand Up @@ -202,6 +203,7 @@ export { VoucherIcon } from "./src/VoucherIcon";
export { WaitlistIcon } from "./src/WaitlistIcon";
export { WarningDiamondIcon } from "./src/WarningDiamondIcon";
export { WarningIcon } from "./src/WarningIcon";
export { WarningFilledIcon } from "./src/WarningFilledIcon";
export { WarningTriangleIcon } from "./src/WarningTriangleIcon";
export { WeightIcon } from "./src/WeightIcon";
export { WifiIcon } from "./src/WifiIcon";
Expand Down
24 changes: 24 additions & 0 deletions src/icons/src/CircleCheckFilledIcon.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import React from "react";
import { createIcon } from "./helpers/icon";

export const CircleCheckFilledIcon = createIcon((props) => {
return (
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
d="M9.49929 17.0859C13.6888 17.0859 17.085 13.6897 17.085 9.5002C17.085 5.31073 13.6888 1.91449 9.49929 1.91449C5.30981 1.91449 1.91357 5.31073 1.91357 9.5002C1.91357 13.6897 5.30981 17.0859 9.49929 17.0859Z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M13.3569 6.92865L8.05329 12.0715L5.64258 9.73384"
stroke="white"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
});

CircleCheckFilledIcon.tags = ["tick", "correct", "filled"];
25 changes: 25 additions & 0 deletions src/icons/src/WarningFilledIcon.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import React from "react";
import { createIcon } from "./helpers/icon";

export const WarningFilledIcon = createIcon((props) => {
return (
<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
d="M16.3019 9.3168C16.3086 13.4083 13.0274 16.7498 8.92917 16.8034H8.92247C4.91131 16.857 1.61667 13.6628 1.5564 9.65162C1.54971 9.61814 1.54971 9.58466 1.54971 9.55787L1.54301 9.55117C1.52962 5.45229 4.81087 2.11077 8.90908 2.0505V2.04381C12.9135 1.98354 16.2082 5.17774 16.2685 9.1889C16.2685 9.21568 16.2685 9.24917 16.2685 9.27595L16.3019 9.3168Z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path d="M8.93555 10.1429V6.10181" stroke="white" strokeLinecap="round" strokeLinejoin="round" />
<path
d="M8.93011 12.1254V12.1247C8.83636 12.1247 8.7627 12.1984 8.7627 12.2854C8.7627 12.3725 8.83636 12.4462 8.93011 12.4462V12.4455C9.01716 12.4388 9.09082 12.3651 9.09082 12.2714C9.08412 12.2647 9.08412 12.2647 9.08412 12.2647L9.07743 12.258C9.07073 12.1642 8.99707 12.0906 8.91002 12.0906H8.90332"
stroke="white"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
});

WarningFilledIcon.tags = ["exclamation", "filled"];

0 comments on commit ac5d031

Please sign in to comment.