Skip to content

Commit d4c8ccc

Browse files
committed
feat: Tech 컴포넌트 구현
1 parent dd02a9b commit d4c8ccc

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

src/components/Tech.astro

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)