From 7a8d70a8bb619f5eae7f78d806a2b72b81f401ca Mon Sep 17 00:00:00 2001 From: kirtesh-xola <136308620+kirtesh-xola@users.noreply.github.com> Date: Tue, 3 Dec 2024 16:16:05 +0530 Subject: [PATCH] X2-11281 | chore(icons): adds VerifiedTickIcon.jsx (#353) * X2-11281 chore(icons): adds VerifiedTickIcon.jsx * X2-11281 chore(icons): resolves lint errors * X2-11281 chore(icons): resolves lint errors --- index.d.ts | 1 + src/icons/index.js | 1 + src/icons/src/VerifiedTickIcon.jsx | 30 ++++++++++++++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 src/icons/src/VerifiedTickIcon.jsx diff --git a/index.d.ts b/index.d.ts index 1ee09e5b4..2ad028e33 100644 --- a/index.d.ts +++ b/index.d.ts @@ -262,6 +262,7 @@ export { UserIcon, UserSubtractIcon, ValuePopoverText, + VerifiedTickIcon, VeteranIcon, ViewNotesIcon, VoucherIcon, diff --git a/src/icons/index.js b/src/icons/index.js index a8b6f36b2..06e9f2ed1 100644 --- a/src/icons/index.js +++ b/src/icons/index.js @@ -195,6 +195,7 @@ export { UserAddIcon } from "./src/UserAddIcon"; export { UserChangedIcon } from "./src/UserChangedIcon"; export { UserIcon } from "./src/UserIcon"; export { UserSubtractIcon } from "./src/UserSubtractIcon"; +export { VerifiedTickIcon } from "./src/VerifiedTickIcon"; export { VerifoneImage } from "./src/images/VerifoneImage"; export { VeteranIcon } from "./src/VeteranIcon"; export { ViewNotesIcon } from "./src/ViewNotesIcon"; diff --git a/src/icons/src/VerifiedTickIcon.jsx b/src/icons/src/VerifiedTickIcon.jsx new file mode 100644 index 000000000..25b444164 --- /dev/null +++ b/src/icons/src/VerifiedTickIcon.jsx @@ -0,0 +1,30 @@ +import React from "react"; +import { createIcon } from "./helpers/icon"; + +export const VerifiedTickIcon = createIcon((props) => { + return ( + + + + + + + + + + + + ); +});