2025-02-21 19:54:48 +08:00

20 lines
1.1 KiB
TypeScript

import { FC } from 'react';
interface IconShareProps {
className?: string;
}
const IconShare: FC<IconShareProps> = ({ className }) => {
return (
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
<path d="M9 11.5C9 12.8807 7.88071 14 6.5 14C5.11929 14 4 12.8807 4 11.5C4 10.1193 5.11929 9 6.5 9C7.88071 9 9 10.1193 9 11.5Z" stroke="currentColor" strokeWidth="1.5" />
<path opacity="0.5" d="M14.3206 16.8017L9 13.29" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" />
<path opacity="0.5" d="M14.4207 6.83984L9.1001 10.3515" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" />
<path d="M19 18.5C19 19.8807 17.8807 21 16.5 21C15.1193 21 14 19.8807 14 18.5C14 17.1193 15.1193 16 16.5 16C17.8807 16 19 17.1193 19 18.5Z" stroke="currentColor" strokeWidth="1.5" />
<path d="M19 5.5C19 6.88071 17.8807 8 16.5 8C15.1193 8 14 6.88071 14 5.5C14 4.11929 15.1193 3 16.5 3C17.8807 3 19 4.11929 19 5.5Z" stroke="currentColor" strokeWidth="1.5" />
</svg>
);
};
export default IconShare;