export const Input = forwardRef<HTMLInputElement, InputProps>((props, ref) => {
return
<input
ref={ref}
className=
"viking-input-inner"
disabled={disabled}
{...restProps}
/>
})
const DisabledInput = () => {
const nodeRef = useRef<
null
| HTMLInputElement>(
null
)
return
(
<Input
placeholder=
"disabled input"
ref={nodeRef}
disabled
/>
)
}