forked from xola/ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
X2-11281 chore(icons): adds VerifiedTickIcon.jsx
- Loading branch information
1 parent
6e7888d
commit 2c5c54d
Showing
3 changed files
with
32 additions
and
0 deletions.
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
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,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> | ||
); | ||
}); |