Skip to content

Commit

Permalink
X2-11281 chore(icons): adds VerifiedTickIcon.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kirtesh-xola committed Dec 3, 2024
1 parent 6e7888d commit 2c5c54d
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ export {
UserIcon,
UserSubtractIcon,
ValuePopoverText,
VerifiedTickIcon,
VeteranIcon,
ViewNotesIcon,
VoucherIcon,
Expand Down
1 change: 1 addition & 0 deletions src/icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
30 changes: 30 additions & 0 deletions src/icons/src/VerifiedTickIcon.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import { createIcon } from "./helpers/icon";

export const VerifiedTickIcon = createIcon((props) => {
return (
<svg xmlns="http://www.w3.org/2000/svg" width={14} height={14} fill="none" viewBox="0 0 140 140" {...props}>
<path
fill="url(#paint0_linear_4_8)"
fillRule="evenodd"
d="M82.82 5.905c-7.048-7.873-19.376-7.873-26.425 0l-3.323 3.712a17.73 17.73 0 0 1-14.192 5.878l-4.974-.274c-10.552-.584-19.269 8.133-18.685 18.685l.274 4.974a17.73 17.73 0 0 1-5.878 14.192l-3.712 3.323c-7.873 7.049-7.873 19.377 0 26.425l3.712 3.323a17.73 17.73 0 0 1 5.878 14.192l-.274 4.974c-.584 10.552 8.133 19.269 18.685 18.686l4.974-.275a17.73 17.73 0 0 1 14.192 5.878l3.323 3.712c7.049 7.874 19.377 7.874 26.425 0l3.323-3.712a17.73 17.73 0 0 1 14.192-5.878l4.974.275c10.552.583 19.269-8.134 18.686-18.686l-.275-4.974a17.73 17.73 0 0 1 5.878-14.192l3.712-3.323c7.874-7.048 7.874-19.376 0-26.425l-3.712-3.323a17.73 17.73 0 0 1-5.878-14.192l.275-4.974c.583-10.552-8.134-19.269-18.686-18.685l-4.974.274a17.73 17.73 0 0 1-14.192-5.878zm-32.909 58.87c-9.765-9.014-23.248 5.223-14.467 14.778 5.975 5.121 14.337 13.008 20.037 18.495a10.25 10.25 0 0 0 7.29 2.607 10.27 10.27 0 0 0 7.032-3.25l33.621-40.561c9.201-9.804-5.512-24.114-14.829-14.37l-26.763 33.26c-2.74-2.483-6.435-5.895-9.564-8.784z"
clipRule="evenodd"
></path>
<defs>
<linearGradient
id="paint0_linear_4_8"
x1="-4.5"
x2="139"
y1="65.5"
y2="86.5"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#0281DF"></stop>
<stop offset="0.25" stopColor="#249EEE"></stop>
<stop offset="0.5" stopColor="#3CB2F9"></stop>
<stop offset="1" stopColor="#61CAFF"></stop>
</linearGradient>
</defs>
</svg>
);
});

0 comments on commit 2c5c54d

Please sign in to comment.