18 lines
268 B
Plaintext
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"
|
|
/>
|