export interface OrderInfoProps {
  title: string;
  status: string;
  isMarked: boolean | undefined;
  isSeller: boolean | undefined;
}
