@jstnmthw/react-fluentui-emoji
Version:
Fluent Emoji SVG icons for UI react development.
124 lines (123 loc) • 4 kB
JSX
const React = require("react");
const LargeOrangeDiamondIcon = ({ title, titleId, ...props }) => (
<svg
width="1em"
height="1em"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-labelledby={titleId}
{...props}
>
{title ? <title id={titleId}>{title}</title> : null}
<g filter="url(#filter0_iiii_18590_2881)">
<path
d="M3.60849 18.4779C2.82744 17.6969 2.82744 16.4305 3.60849 15.6495L14.9222 4.33579C15.7032 3.55474 16.9696 3.55474 17.7506 4.33579L29.0643 15.6495C29.8454 16.4305 29.8454 17.6969 29.0643 18.4779L17.7506 29.7916C16.9696 30.5727 15.7032 30.5727 14.9222 29.7916L3.60849 18.4779Z"
fill="url(#paint0_linear_18590_2881)"
/>
</g>
<defs>
<filter
id="filter0_iiii_18590_2881"
x={2.27271}
y={3}
width={28.1274}
height={28.1274}
filterUnits="userSpaceOnUse"
colorInterpolationFilters="sRGB"
>
<feFlood floodOpacity={0} result="BackgroundImageFix" />
<feBlend
mode="normal"
in="SourceGraphic"
in2="BackgroundImageFix"
result="shape"
/>
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dx={-0.75} />
<feGaussianBlur stdDeviation={0.5} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.917647 0 0 0 0 0.305882 0 0 0 0 0.305882 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="shape"
result="effect1_innerShadow_18590_2881"
/>
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dx={0.75} />
<feGaussianBlur stdDeviation={0.5} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.862745 0 0 0 0 0.396078 0 0 0 0 0.243137 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="effect1_innerShadow_18590_2881"
result="effect2_innerShadow_18590_2881"
/>
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dx={0.75} dy={-0.75} />
<feGaussianBlur stdDeviation={0.5} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.843137 0 0 0 0 0.282353 0 0 0 0 0.360784 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="effect2_innerShadow_18590_2881"
result="effect3_innerShadow_18590_2881"
/>
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dx={-0.75} dy={0.75} />
<feGaussianBlur stdDeviation={0.5} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 1 0 0 0 0 0.592157 0 0 0 0 0.356863 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="effect3_innerShadow_18590_2881"
result="effect4_innerShadow_18590_2881"
/>
</filter>
<linearGradient
id="paint0_linear_18590_2881"
x1={10.875}
y1={11.875}
x2={23.125}
y2={25.25}
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#F47947" />
<stop offset={1} stopColor="#EF5D50" />
</linearGradient>
</defs>
</svg>
);
module.exports = LargeOrangeDiamondIcon;