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

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

/** Native `type="week"` — same props as {@link Input} except `type`; `min` / `max` use week strings (e.g. `2026-W16`). */
export function WeekInput(props: WeekInputProps) {
  return <Input type="week" {...props} />;
}

