import { inputPlaceholder } from "../_utils/defaultSchema"; export default [ { title: '电子邮箱输入', screenshot: require('./__screenshots__/email.png'), schema: { componentName: 'FormItemInput.Email', title: '电子邮箱输入', props: { placeholder: inputPlaceholder, typeobj: { type: 'email', enabled: true, }, allowClear: true, prefix: { type: 'JSSlot', value: [ { componentName: 'Icon', props: { type: 'pisell2-mail-01', size: 18, color: '#98A2B3', rotate: 0, spin: false, }, hidden: false, title: '', isLocked: false, condition: true, conditionGroup: '', }, ], }, }, }, }, ];