34 lines
814 B
TypeScript
34 lines
814 B
TypeScript
interface Props {
|
|
className?: string;
|
|
}
|
|
|
|
function ShareIcon({ className }: Props) {
|
|
return (
|
|
<svg
|
|
width={24}
|
|
height={24}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
d="M19 14.875L19 16C19 17.6569 17.6569 19 16 19L8.00002 19C6.34316 19 5.00001 17.6568 5.00002 16L5.00009 7.99998C5.0001 6.34313 6.34324 5 8.00009 5L9.12494 5"
|
|
stroke="currentColor"
|
|
strokeWidth={1.5}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M13.5 10.5L18.8502 5M18.8502 5V10.4M18.8502 5H13.4502"
|
|
stroke="currentColor"
|
|
strokeWidth={1.5}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ShareIcon;
|