mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 07:09:55 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
31 lines
832 B
TypeScript
31 lines
832 B
TypeScript
import React from 'react';
|
|
import type { GetProp } from 'antd';
|
|
import { Input, Space, Typography } from 'antd';
|
|
|
|
const { Title } = Typography;
|
|
|
|
const App: React.FC = () => {
|
|
const onChange: GetProp<typeof Input.OTP, 'onChange'> = (text) => {
|
|
console.log('onChange:', text);
|
|
};
|
|
|
|
const sharedProps = {
|
|
onChange,
|
|
};
|
|
|
|
return (
|
|
<Space direction="vertical">
|
|
<Title level={5}>With formatter (Upcase)</Title>
|
|
<Input.OTP formatter={(str) => str.toUpperCase()} {...sharedProps} />
|
|
<Title level={5}>With Disabled</Title>
|
|
<Input.OTP disabled {...sharedProps} />
|
|
<Title level={5}>With Length (8)</Title>
|
|
<Input.OTP length={8} {...sharedProps} />
|
|
<Title level={5}>With variant</Title>
|
|
<Input.OTP variant="filled" {...sharedProps} />
|
|
</Space>
|
|
);
|
|
};
|
|
|
|
export default App;
|