Files
f1r3.xyz-site/src/components/inline-svg.astro

18 lines
268 B
Plaintext

---
import type { SvgComponent } from "astro/types";
interface Props {
SvgComponent: SvgComponent;
size?: number;
}
const { size = 24, SvgComponent } = Astro.props;
---
<SvgComponent
height={size}
width={size}
fill="currentColor"
role="presentation"
/>