Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3000 | Rev 3238 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3000 Rev 3234
Línea 18... Línea 18...
18
  onChange,
18
  onChange,
19
  value,
19
  value,
20
  icon,
20
  icon,
21
  accept,
21
  accept,
22
  error,
22
  error,
-
 
23
  style,
23
  ...props
24
  ...props
24
}) => {
25
}) => {
25
  if (control) {
26
  if (control) {
26
    return (
27
    return (
27
      <Controller
28
      <Controller
Línea 40... Línea 41...
40
              }}
41
              }}
41
              startAdornment={
42
              startAdornment={
42
                icon ? <InputAdornment>{icon}</InputAdornment> : null
43
                icon ? <InputAdornment>{icon}</InputAdornment> : null
43
              }
44
              }
44
              fullWidth
45
              fullWidth
-
 
46
              sx={style}
45
              {...props}
47
              {...props}
46
            />
48
            />
Línea 47... Línea 49...
47
 
49
 
48
            {error ? <FormErrorFeedback>{error}</FormErrorFeedback> : null}
50
            {error ? <FormErrorFeedback>{error}</FormErrorFeedback> : null}
Línea 64... Línea 66...
64
        inputProps={{
66
        inputProps={{
65
          accept
67
          accept
66
        }}
68
        }}
67
        startAdornment={icon ? <InputAdornment>{icon}</InputAdornment> : null}
69
        startAdornment={icon ? <InputAdornment>{icon}</InputAdornment> : null}
68
        fullWidth
70
        fullWidth
-
 
71
        sx={style}
69
        {...props}
72
        {...props}
70
      />
73
      />
Línea 71... Línea 74...
71
 
74
 
72
      {error ? <FormErrorFeedback>{error}</FormErrorFeedback> : null}
75
      {error ? <FormErrorFeedback>{error}</FormErrorFeedback> : null}