Browse Source

Remove unused event.

Pedro Semeano 4 years ago
parent
commit
a6cc24bf16
1 changed files with 0 additions and 2 deletions
  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) {