import {FocusScope} from '@react-aria/focus'; import React, {ComponentPropsWithoutRef, CSSProperties, ReactNode} from 'react'; import clsx from 'clsx'; interface InputProps { className?: string; children: ReactNode; autoFocus?: boolean; disabled?: boolean; style?: CSSProperties; inputProps?: ComponentPropsWithoutRef<'div'>; wrapperProps?: ComponentPropsWithoutRef<'div'>; onClick?: React.MouseEventHandler; } export const Input = React.forwardRef( (props, ref) => { const { children, inputProps, wrapperProps, className, autoFocus, style, onClick, } = props; return (
{children}
); } );