From ede319da590e39a73ad746a229071e4e5cd1c883 Mon Sep 17 00:00:00 2001 From: Korbs Date: Thu, 25 Jul 2024 00:51:21 -0400 Subject: [PATCH] Add Chip component --- src/components/Chip.astro | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/components/Chip.astro diff --git a/src/components/Chip.astro b/src/components/Chip.astro new file mode 100644 index 0000000..004f040 --- /dev/null +++ b/src/components/Chip.astro @@ -0,0 +1,17 @@ +--- +const { + Text, + Color +} = Astro.props +--- + +

{Text}

+ + \ No newline at end of file