UNPKG

@jstnmthw/react-fluentui-emoji

Version:

Fluent Emoji SVG icons for UI react development.

88 lines (87 loc) 2.68 kB
const React = require("react"); const DiamondSuitIcon = ({ 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_ii_18_4043)"> <path d="M14.3784 2.77202L4.52279 14.5547C3.82574 15.3841 3.82574 16.6134 4.52279 17.4528L14.3784 29.2355C15.2303 30.2548 16.7697 30.2548 17.6216 29.2355L27.4772 17.4528C28.1743 16.6234 28.1743 15.3941 27.4772 14.5547L17.6216 2.77202C16.7697 1.74266 15.2303 1.74266 14.3784 2.77202Z" fill="url(#paint0_linear_18_4043)" /> </g> <defs> <filter id="filter0_ii_18_4043" x={2.75} y={2} width={26.5} height={28} 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.25} /> <feGaussianBlur stdDeviation={0.625} /> <feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} /> <feColorMatrix type="matrix" values="0 0 0 0 0.780392 0 0 0 0 0.219608 0 0 0 0 0.34902 0 0 0 1 0" /> <feBlend mode="normal" in2="shape" result="effect1_innerShadow_18_4043" /> <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.25} /> <feGaussianBlur stdDeviation={0.625} /> <feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} /> <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.380392 0 0 0 0 0.560784 0 0 0 1 0" /> <feBlend mode="normal" in2="effect1_innerShadow_18_4043" result="effect2_innerShadow_18_4043" /> </filter> <linearGradient id="paint0_linear_18_4043" x1={16} y1={2} x2={16} y2={30} gradientUnits="userSpaceOnUse" > <stop stopColor="#FF3F64" /> <stop offset={1} stopColor="#FD3DA2" /> </linearGradient> </defs> </svg> ); module.exports = DiamondSuitIcon;