Skip to content

Commit

Permalink
designSystemFixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davimarcilio committed Mar 12, 2023
1 parent 736404e commit 13522db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/TextInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface TextInputProps extends ComponentProps<typeof Input> {
}

export const TextInput = forwardRef<ElementRef<typeof Input>, TextInputProps>(
({ prefix, ref, ...props }: TextInputProps) => {
({ prefix, ...props }: TextInputProps, ref) => {
return (
<TextInputContainer>
{!!prefix && <Prefix>{prefix}</Prefix>}
Expand Down

0 comments on commit 13522db

Please sign in to comment.