export type TSelectOption = {
  value: string;
  label: string;
  icon?: React.ReactNode;
  fieldColor?: string;
};
