We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd02a9b commit d4c8cccCopy full SHA for d4c8ccc
1 file changed
src/components/Tech.astro
@@ -0,0 +1,12 @@
1
+---
2
+type Props = {
3
+ label: string;
4
+};
5
+
6
+const { label } = Astro.props;
7
8
9
+<span
10
+ class="inline-flex justify-center items-center border rounded-full bg-gray-100 text-emerald-600 px-2 py-1"
11
+ >{label}</span
12
+>
0 commit comments