打字稿无法识别用于渲染图标的蚂蚁设计道具
Typescript does not recognize ant design prop for rendering icon
我是 typescript 和 Ant design 的新手。我有一个密码输入,并希望在输入元素中有一个 open/invisible 图标。但是打字稿给我一个错误,iconRender 在类型 'IntrinsicAttributes & InputProps & RefAttributes' 上不存在。我该如何解决?
<Input
type="password"
className={styles["password-input"]}
placeholder="Password"
iconRender={(visible: ReactNode) =>
visible ? <EyeTwoTone /> : <EyeInvisibleOutlined />
}
/>
您应该使用 Input.Password
从 antd
输入密码。查看更多:https://ant.design/components/input/#components-input-demo-password-input
我是 typescript 和 Ant design 的新手。我有一个密码输入,并希望在输入元素中有一个 open/invisible 图标。但是打字稿给我一个错误,iconRender 在类型 'IntrinsicAttributes & InputProps & RefAttributes' 上不存在。我该如何解决?
<Input
type="password"
className={styles["password-input"]}
placeholder="Password"
iconRender={(visible: ReactNode) =>
visible ? <EyeTwoTone /> : <EyeInvisibleOutlined />
}
/>
您应该使用 Input.Password
从 antd
输入密码。查看更多:https://ant.design/components/input/#components-input-demo-password-input