51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
function MailGradientIcon() {
|
|
return (
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g id="Icon/Mail">
|
|
<g id="Vector">
|
|
<path
|
|
d="M3 8.48345C3 8.09481 3.42397 7.85476 3.75723 8.0547L11.4855 12.6913C11.8022 12.8813 12.1978 12.8813 12.5145 12.6913L20.2428 8.05435C20.576 7.85439 21 8.09445 21 8.4831V17C21 17.5523 20.5523 18 20 18H4C3.44772 18 3 17.5523 3 17V8.48345Z"
|
|
fill="url(#paint0_linear_56_11108)"
|
|
/>
|
|
<path
|
|
d="M3.54791 5.92875C3.11307 5.66784 3.29805 5 3.80516 5H20.1948C20.702 5 20.8869 5.66784 20.4521 5.92875L12.5145 10.6913C12.1978 10.8813 11.8022 10.8813 11.4855 10.6913L3.54791 5.92875Z"
|
|
fill="url(#paint1_linear_56_11108)"
|
|
/>
|
|
</g>
|
|
</g>
|
|
<defs>
|
|
<linearGradient
|
|
id="paint0_linear_56_11108"
|
|
x1="3"
|
|
y1="27.2857"
|
|
x2="23.3585"
|
|
y2="25.6292"
|
|
gradientUnits="userSpaceOnUse"
|
|
>
|
|
<stop offset="0.167052" stopColor="#798FFF" />
|
|
<stop offset="0.963542" stopColor="#D375FF" />
|
|
</linearGradient>
|
|
<linearGradient
|
|
id="paint1_linear_56_11108"
|
|
x1="3"
|
|
y1="27.2857"
|
|
x2="23.3585"
|
|
y2="25.6292"
|
|
gradientUnits="userSpaceOnUse"
|
|
>
|
|
<stop offset="0.167052" stopColor="#798FFF" />
|
|
<stop offset="0.963542" stopColor="#D375FF" />
|
|
</linearGradient>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default MailGradientIcon;
|