import SelectInput from '@/components/input/SelectInput'; import { cn } from '@/lib/helper'; export interface OptionType { label: string; value: string | number; } interface TableRowSizeSelectorProps { value: number; onChange: (val: OptionType | OptionType[] | null) => void; options: OptionType[]; children?: React.ReactNode; className?: string; } export const TableRowSizeSelector = ({ value, onChange, options, children, className, }: TableRowSizeSelectorProps) => { return (