Skip to content
Snippets Groups Projects
ui.ts 334 B
Newer Older
import type { TTheme } from '@/app/interfaces/environment';

export interface IToggleButtonItem {
  label: string;
  textColor?: TTheme;
  backgroundColor?: TTheme;
  isLabelHidden?: boolean;
  iconPos?: string;
  textStyle?: 'bold' | 'italic';
}
export interface ISliderOption {
  label: string;
  value: number;
  color?: string;
}