Finish the photo page

This commit is contained in:
itsfinniii
2026-04-27 14:37:13 +02:00
parent fdc8a0aae6
commit db65ac52a3
8 changed files with 73 additions and 14 deletions

View File

@@ -0,0 +1,10 @@
---
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>