trade-frontend/src/interfaces/props/components/UI/HorizontalSelect/HorizontalSelectProps.ts
2025-08-28 15:31:39 +05:00

14 lines
387 B
TypeScript

import HorizontalSelectValue from '@/interfaces/common/HorizontalSelectValue';
import { Dispatch, SetStateAction } from 'react';
interface HorizontalSelectProps<T extends HorizontalSelectValue> {
withNotifications?: boolean;
body: T[];
value: T;
setValue: Dispatch<SetStateAction<T>>;
className?: string;
isTab?: boolean;
isSm?: boolean;
}
export default HorizontalSelectProps;