ant-design/components/input/__tests__/demo.test.tsx
kiner-tang(文辉) dcba47bbf5
feat: Input.TextArea support rootClassName (#44058)
* feat: Input.TextArea support rootClassName

* feat: optimize code

* feat: optimize code

* feat: add rootClassName test
2023-08-07 18:06:06 +08:00

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',
});