import { cn } from '@affine/admin/utils'; import * as React from 'react'; export interface InputProps extends React.InputHTMLAttributes {} const Input = React.forwardRef( ({ className, type, ...props }, ref) => { return ( ); } ); Input.displayName = 'Input'; export { Input };