Files
site-profile/src/components/ui/logos/ApplicationLogo.astro
Alex Lebens 9678b3c718
Some checks failed
test-build / build (push) Failing after 43s
renovate / renovate (push) Successful in 1m34s
feat: add applications page
2026-02-08 23:10:40 -06:00

9 lines
297 B
Plaintext

---
import Image from '@components/ui/images/Image.astro';
const { src, alt } = Astro.props;
---
<Image src={src} alt={alt} style="color: transparent; width: 32px; height: 32px; object-fit: contain; max-height: 100%; max-width: 100%;" draggable="false" loading="lazy" width="32" height="32" />