import { clx } from "@medusajs/ui" import { PropsWithChildren } from "react" type StatusCellProps = PropsWithChildren<{ color?: "green" | "red" | "blue" | "orange" | "grey" | "purple" }> /** * @deprecated Use the new DataTable and DataTableStatusCell instead */ export const StatusCell = ({ color, children }: StatusCellProps) => { return (
{children}
) }