From 04c0000eb361003bf454ed1209587476df408586 Mon Sep 17 00:00:00 2001 From: thesn10 <38666407+thesn10@users.noreply.github.com> Date: Thu, 2 Jul 2026 22:29:01 +0200 Subject: [PATCH] Add StatusChip component --- app/src/components/StatusChip.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app/src/components/StatusChip.tsx diff --git a/app/src/components/StatusChip.tsx b/app/src/components/StatusChip.tsx new file mode 100644 index 0000000..6394c75 --- /dev/null +++ b/app/src/components/StatusChip.tsx @@ -0,0 +1,16 @@ +import type { JSX } from "react"; +import { Chip } from "heroui-native"; +import type { StatusColor } from "@/lib/status"; + +interface StatusChipProps { + label: string; + color: StatusColor; +} + +export function StatusChip({ label, color }: StatusChipProps): JSX.Element { + return ( + + {label} + + ); +}