Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | 519x | type IconProps = {
height?: number;
width?: number;
stroke?: string;
};
const ShareIcon = ({
width = 35,
height = 35,
stroke = "#727179",
}: IconProps) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 35 35"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_1720_63656)">
<path
d="M26.859 11.6931C29.4196 11.6931 31.4954 9.61737 31.4954 7.05677C31.4954 4.49618 29.4196 2.42041 26.859 2.42041C24.2984 2.42041 22.2227 4.49618 22.2227 7.05677C22.2227 9.61737 24.2984 11.6931 26.859 11.6931Z"
stroke={stroke}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8.31361 22.5114C10.8742 22.5114 12.95 20.4356 12.95 17.875C12.95 15.3144 10.8742 13.2386 8.31361 13.2386C5.75302 13.2386 3.67725 15.3144 3.67725 17.875C3.67725 20.4356 5.75302 22.5114 8.31361 22.5114Z"
stroke={stroke}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M26.859 33.3295C29.4196 33.3295 31.4954 31.2537 31.4954 28.6931C31.4954 26.1325 29.4196 24.0568 26.859 24.0568C24.2984 24.0568 22.2227 26.1325 22.2227 28.6931C22.2227 31.2537 24.2984 33.3295 26.859 33.3295Z"
stroke={stroke}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12.3164 20.2086L22.8719 26.3595M22.8564 9.39038L12.3164 15.5413"
stroke={stroke}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
<defs>
<clipPath id="clip0_1720_63656">
<rect
width="34"
height="34"
fill="white"
transform="translate(0.84375 0.875)"
/>
</clipPath>
</defs>
</svg>
);
};
export default ShareIcon;
|