10 lines
333 B
Plaintext
10 lines
333 B
Plaintext
---
|
|
interface Props {
|
|
width?: number;
|
|
height?: number;
|
|
}
|
|
---
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width={Astro.props.width ?? "24"} height={Astro.props.height ?? "24"} viewBox="0 0 24 24">
|
|
<path fill="currentColor" d="M6.4 19L5 17.6l5.6-5.6L5 6.4L6.4 5l5.6 5.6L17.6 5L19 6.4L13.4 12l5.6 5.6l-1.4 1.4l-5.6-5.6z" />
|
|
</svg> |