Explorar el Código

Remove unused event.

Pedro Semeano hace 4 años
padre
commit
a6cc24bf16
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      packages/components/src/components/TextField/TextField.tsx

+ 0 - 2
packages/components/src/components/TextField/TextField.tsx

@@ -9,7 +9,6 @@ type TextFieldProps = {
   helper?: string
   value?: string
   icon?: IconProp
-  onClick?: (e: React.MouseEvent<HTMLDivElement>) => void
   onChange?: (e: React.ChangeEvent) => void
 } & TextFieldStyleProps
 
@@ -19,7 +18,6 @@ export default function TextField({
   value = "",
   icon = null,
   disabled = false,
-  onClick,
   onChange,
   ...styleProps
 }: TextFieldProps) {