import type { ConditionOption } from '../types';

export const conditions: ConditionOption[] = [
  {
    value: 'New',
    label: 'New',
  },
  {
    value: 'Used',
    label: 'Used',
  },
  {
    value: 'Renovated',
    label: 'Renovated',
  },
  {
    value: 'Foreclosure',
    label: 'Foreclosure',
  },
  {
    value: 'Short Sale',
    label: 'Short Sale',
  },
];
