This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-astro/src/components/IconMapper.astro

42 lines
955 B
Text

---
import icons from "@cdransf/astro-tabler-icons";
const {
IconArticle,
IconHeadphones,
IconDeviceTvOld,
IconBooks,
IconLink,
IconInfoCircle,
IconSearch,
IconRss,
IconBrandMastodon,
IconMail,
IconBrandGithub,
IconBrandNpm,
IconCoffee,
IconDeviceWatch,
IconHeartHandshake,
} = icons;
const { icon, className } = Astro.props;
const iconComponents = {
article: IconArticle,
headphones: IconHeadphones,
"device-tv-old": IconDeviceTvOld,
books: IconBooks,
link: IconLink,
"info-circle": IconInfoCircle,
search: IconSearch,
rss: IconRss,
"brand-mastodon": IconBrandMastodon,
mail: IconMail,
"brand-github": IconBrandGithub,
"brand-npm": IconBrandNpm,
coffee: IconCoffee,
"device-watch": IconDeviceWatch,
"heart-handshake": IconHeartHandshake,
};
const SelectedIcon = iconComponents[icon?.toLowerCase()] || null;
---
{SelectedIcon ? <div set:html={SelectedIcon({ size: 24, className })} /> : null}