import Chip, { type ChipProps } from "@mui/material/Chip"; type StatusChipProps = Omit & { color?: "default" | "success" | "error" | "warning" | "info"; }; /** Semantic status chip. Pass onClick to make it a clickable toggle. */ export default function StatusChip({ color = "default", size = "small", onClick, sx, ...props }: StatusChipProps) { return ( ); }