Initial commit of Astro version

This commit is contained in:
Bad Manners 2024-08-15 21:27:00 -03:00
commit e3d1f6999b
79 changed files with 9880 additions and 0 deletions

View file

@ -0,0 +1,16 @@
---
type Props = {
width: string;
height: string;
viewBox: string;
class?: string;
fill?: string;
children: any;
};
const { width, height, class: className, fill = "currentColor", viewBox } = Astro.props;
---
<svg style={{ width, height, fill }} class={className} viewBox={viewBox} aria-hidden>
<slot />
</svg>