import type { StatusPresentation } from '@/types/status' import { Chip } from '@/components/heroui/Chip' type StatusChipProps = StatusPresentation & { description?: React.ReactNode } const StatusChip = ({ chipColor, description, label }: StatusChipProps) => (
{label} {description ? {description} : null}
) export default StatusChip