25 lines
740 B
TypeScript
25 lines
740 B
TypeScript
import { SVGProps } from "react";
|
|
import { JSX } from "react/jsx-runtime";
|
|
|
|
function ShareIcon(props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={24}
|
|
height={24}
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={1.5}
|
|
d="M7.574 11.305a1.907 1.907 0 1 0 0 1.853m0-1.853a1.9 1.9 0 0 1 0 1.853m0-1.853 8.107-4.504m-8.107 6.357 8.107 4.503m0-10.86a1.907 1.907 0 1 0 3.368-1.788 1.907 1.907 0 0 0-3.368 1.788Zm0 10.86a1.907 1.907 0 1 0 3.334 1.853 1.907 1.907 0 0 0-3.334-1.853Z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ShareIcon;
|