@jstnmthw/react-fluentui-emoji
Version:
Fluent Emoji SVG icons for UI react development.
124 lines (123 loc) • 3.94 kB
JSX
const React = require("react");
const BlackSmallSquareIcon = ({ 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_2861)">
<path
d="M11.2955 11.6735C11.2955 11.279 11.6153 10.9592 12.0098 10.9592H20.5812C20.9757 10.9592 21.2955 11.279 21.2955 11.6735V20.2449C21.2955 20.6394 20.9757 20.9592 20.5812 20.9592H12.0098C11.6153 20.9592 11.2955 20.6394 11.2955 20.2449V11.6735Z"
fill="url(#paint0_linear_18590_2861)"
/>
</g>
<defs>
<filter
id="filter0_iiii_18590_2861"
x={10.2955}
y={9.95917}
width={12}
height={12}
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={-1} />
<feGaussianBlur stdDeviation={0.5} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.407843 0 0 0 0 0.384314 0 0 0 0 0.443137 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="shape"
result="effect1_innerShadow_18590_2861"
/>
<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 dy={-1} />
<feGaussianBlur stdDeviation={0.5} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.258824 0 0 0 0 0.141176 0 0 0 0 0.356863 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="effect1_innerShadow_18590_2861"
result="effect2_innerShadow_18590_2861"
/>
<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={1} />
<feGaussianBlur stdDeviation={0.5} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.196078 0 0 0 0 0.176471 0 0 0 0 0.223529 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="effect2_innerShadow_18590_2861"
result="effect3_innerShadow_18590_2861"
/>
<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 dy={1} />
<feGaussianBlur stdDeviation={0.5} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.278431 0 0 0 0 0.247059 0 0 0 0 0.317647 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="effect3_innerShadow_18590_2861"
result="effect4_innerShadow_18590_2861"
/>
</filter>
<linearGradient
id="paint0_linear_18590_2861"
x1={16.2955}
y1={10.9592}
x2={16.2955}
y2={20.9592}
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#4C405A" />
<stop offset={1} stopColor="#473B54" />
</linearGradient>
</defs>
</svg>
);
module.exports = BlackSmallSquareIcon;