summaryrefslogtreecommitdiff
path: root/src/components/TechIcon.astro
blob: 8563cf4909a0cff9282105be4d15695f95884e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
---
interface Props {
  name: string;
}

const { name } = Astro.props;
---

<span class="tech-icon" data-tech={name}>
  <slot />
</span>