mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
dcba47bbf5
* feat: Input.TextArea support rootClassName * feat: optimize code * feat: optimize code * feat: add rootClassName test
21 lines
464 B
TypeScript
21 lines
464 B
TypeScript
import * as React from 'react';
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('input');
|
|
|
|
rootPropsTest(
|
|
'input',
|
|
(Input, props) => <Input addonBefore="Bamboo" addonAfter="Light" {...props} />,
|
|
{
|
|
name: 'addon',
|
|
},
|
|
);
|
|
|
|
rootPropsTest('input', (Input, props) => <Input.Password {...props} />, {
|
|
name: 'password',
|
|
});
|
|
|
|
rootPropsTest('input', (Input, props) => <Input.TextArea {...props} />, {
|
|
name: 'textarea',
|
|
});
|