8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
import { Input as AntInput, InputProps } from 'antd'
|
|
|
|
type Props = InputProps
|
|
|
|
export const Input = (props: Props) => {
|
|
return <AntInput className="dank-input" {...props}></AntInput>
|
|
}
|