import type { InputProps } from '../input/Input';
import { Input } from '../input/Input';

export type MonthInputProps = Omit<InputProps, 'type'>;

/** Native `type="month"` — same props as {@link Input} except `type`; `min` / `max` use `YYYY-MM`. */
export function MonthInput(props: MonthInputProps) {
  return <Input type="month" {...props} />;
}

