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} + + ); +}