mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
19 lines
377 B
Svelte
19 lines
377 B
Svelte
<script lang="ts">
|
|
import type { IconProps } from "@/types/icon";
|
|
|
|
let props: IconProps = $props();
|
|
</script>
|
|
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={props.size}
|
|
height={props.size}
|
|
viewBox="0 0 2500 2500"
|
|
>
|
|
<path fill="#c00" d="M0 0h2500v2500H0z" />
|
|
<path
|
|
fill="#fff"
|
|
d="M1241.5 268.5h-973v1962.9h972.9V763.5h495v1467.9h495V268.5z"
|
|
/>
|
|
</svg>
|