mirror of
https://github.com/wanderer-industries/wanderer
synced 2026-05-03 16:00:37 +00:00
20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
import { SvgIconProps, SvgIconWrapper } from '@/hooks/Mapper/components/ui-kit/SvgIconWrapper.tsx';
|
|
|
|
export const MapDeleteIcon = (props: SvgIconProps) => (
|
|
<SvgIconWrapper width={800} height={800} viewBox="0 0 800 800" {...props}>
|
|
<path
|
|
d="M416.667 234.716C411.247 233.807 405.68 233.333 400 233.333C344.77 233.333 300 278.105 300 333.333C300 388.563 344.77 433.333 400 433.333C455.23 433.333 500 388.563 500 333.333C500 327.655 499.527 322.087 498.617 316.667"
|
|
stroke="currentColor"
|
|
strokeWidth="50"
|
|
strokeLinecap="round"
|
|
/>
|
|
<path
|
|
d="M166.667 507.203C145.085 452.073 133.333 393.377 133.333 338.11C133.333 188.196 252.724 66.6666 400 66.6666C547.277 66.6666 666.667 188.196 666.667 338.11C666.667 486.85 581.557 660.413 448.763 722.48C417.81 736.95 382.19 736.95 351.237 722.48C308.825 702.657 271.277 671.463 239.813 633.333"
|
|
stroke="currentColor"
|
|
strokeWidth="50"
|
|
strokeLinecap="round"
|
|
/>
|
|
<path d="M747.901 90L105 732.9" stroke="currentColor" strokeWidth="63" strokeLinecap="round" />
|
|
</SvgIconWrapper>
|
|
);
|