import * as React from 'react'; import { forwardRef } from 'react'; import { ctw } from '../../../utils/ctw/ctw'; import { TInputProps } from './types'; export const Input = forwardRef( ({ className, type, ...props }, ref) => { return ( ); }, ); Input.displayName = 'Input';