This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/ref/astro-embed/packages/astro-embed-baseline-status/BrowserIcon.astro
2025-03-07 14:59:06 +01:00

19 lines
456 B
Plaintext

---
import type { Browser } from './types';
import chrome from './icons/browsers/chrome.svg';
import edge from './icons/browsers/edge.svg';
import firefox from './icons/browsers/firefox.svg';
import safari from './icons/browsers/safari.svg';
interface Props {
browser: Browser;
}
const { browser } = Astro.props;
const icons = { chrome, edge, firefox, safari };
const { src, width, height } = icons[browser];
---
<img {src} alt="" {width} {height} />