30 lines
1.7 KiB
TypeScript
30 lines
1.7 KiB
TypeScript
import type { SVGProps } from 'react'
|
|
|
|
const SvgStickersIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={16}
|
|
height={16}
|
|
fill="none"
|
|
viewBox="0 0 16 16"
|
|
aria-hidden={true}
|
|
focusable={false}
|
|
{...props}
|
|
>
|
|
<g clipPath="url(#prefix__clip0_1118_30)">
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
d="M2.1 8c0-1.366.063-2.41.23-3.214.165-.799.424-1.316.782-1.674.358-.358.875-.617 1.674-.782C5.59 2.163 6.634 2.1 8 2.1c1.365 0 2.409.063 3.214.23.799.165 1.316.424 1.674.782.358.358.617.875.782 1.674.167.805.23 1.848.23 3.214 0 .134-.005.268-.015.4-.875.002-1.597.014-2.192.081-.741.084-1.359.26-1.885.663a3.6 3.6 0 0 0-.664.664c-.404.526-.58 1.144-.663 1.885-.067.595-.079 1.317-.08 2.192-.133.01-.267.015-.401.015-1.366 0-2.41-.063-3.214-.23-.799-.165-1.316-.424-1.674-.782-.358-.358-.617-.875-.782-1.674C2.163 10.41 2.1 9.365 2.1 8ZM9.6 13.664a6.13 6.13 0 0 0 4.063-4.063c-.763.004-1.354.018-1.837.073-.633.071-1.006.205-1.288.422a2.398 2.398 0 0 0-.443.443c-.217.282-.35.655-.422 1.288-.055.483-.069 1.074-.073 1.837ZM8 .9c-1.385 0-2.528.062-3.458.255-.936.193-1.7.529-2.279 1.108-.58.58-.915 1.343-1.108 2.28C.962 5.471.9 6.614.9 8c0 1.384.062 2.528.255 3.458.193.935.529 1.7 1.108 2.279.58.58 1.343.914 2.28 1.108.929.193 2.072.255 3.457.255 3.831 0 7.1-3.269 7.1-7.1 0-1.385-.062-2.528-.255-3.458-.194-.936-.529-1.7-1.108-2.279-.58-.58-1.344-.915-2.28-1.108C10.529.962 9.385.9 8 .9Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="prefix__clip0_1118_30">
|
|
<path fill="#fff" d="M0 0h16v16H0z" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
export default SvgStickersIcon
|