CustomIcon.svelte
· 519 B · SVG
原始檔案
<-- This way we can define custom icon while mimicking lucide's api -->
<script>
export let size = 24;
export let color = "currentColor";
export let strokeWidth = 2;
</script>
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke={color}
stroke-width={strokeWidth}
stroke-linecap="round"
stroke-linejoin="round"
{...$$restProps}
>
<path d="M12 2L2 7l10 5 10-5-10-5z" />
<path d="M2 17l10 5 10-5" />
<path d="M2 12l10 5 10-5" />
</svg>