textField.tsx 320 B

1234567891011121314151617
  1. import InputField from 'sentry/components/deprecatedforms/inputField';
  2. type Props = InputField['props'] & {
  3. spellCheck?: string;
  4. };
  5. export default class TextField extends InputField<Props> {
  6. getAttributes() {
  7. return {
  8. spellCheck: this.props.spellCheck,
  9. };
  10. }
  11. getType() {
  12. return 'text';
  13. }
  14. }