feat: add dark theme, matrix and FA link, fix inline SVG aria label

This commit is contained in:
2026-03-01 20:43:27 +01:00
parent be3293c53b
commit 2d8fa1d7bc
4 changed files with 67 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
---
import type { SvgComponent } from "astro/types";
interface Props {
SvgComponent: SvgComponent;
svgSize?: number;
}
const { SvgComponent, svgSize = 24 } = Astro.props;
---
<SvgComponent height={svgSize} width={svgSize} role="presentation" />