diff --git a/src/TextInput/TextInput.tsx b/src/TextInput/TextInput.tsx index 69d180ebf49..931bd1af6c7 100644 --- a/src/TextInput/TextInput.tsx +++ b/src/TextInput/TextInput.tsx @@ -6,7 +6,7 @@ import TextInputInnerVisualSlot from '../_TextInputInnerVisualSlot' import {useProvidedRefOrCreate} from '../hooks' import {Merge} from '../utils/types' import TextInputWrapper, {StyledWrapperProps} from '../internal/components/TextInputWrapper' -import UnstyledTextInput from '../_UnstyledTextInput' +import UnstyledTextInput from '../internal/components/UnstyledTextInput' import TextInputAction from '../_TextInputInnerAction' export type TextInputNonPassthroughProps = { diff --git a/src/TextInputWithTokens/TextInputWithTokens.tsx b/src/TextInputWithTokens/TextInputWithTokens.tsx index 37f992e3e7f..43fd0c01f9e 100644 --- a/src/TextInputWithTokens/TextInputWithTokens.tsx +++ b/src/TextInputWithTokens/TextInputWithTokens.tsx @@ -11,7 +11,7 @@ import Token from '../Token/Token' import {TokenSizeKeys} from '../Token/TokenBase' import TextInputInnerVisualSlot from '../_TextInputInnerVisualSlot' import TextInputWrapper, {textInputHorizPadding, TextInputSizes} from '../internal/components/TextInputWrapper' -import UnstyledTextInput from '../_UnstyledTextInput' +import UnstyledTextInput from '../internal/components/UnstyledTextInput' // eslint-disable-next-line @typescript-eslint/no-explicit-any type AnyReactComponent = React.ComponentType> diff --git a/src/_UnstyledTextInput.tsx b/src/internal/components/UnstyledTextInput.tsx similarity index 92% rename from src/_UnstyledTextInput.tsx rename to src/internal/components/UnstyledTextInput.tsx index f6819e44780..5e924e00a61 100644 --- a/src/_UnstyledTextInput.tsx +++ b/src/internal/components/UnstyledTextInput.tsx @@ -1,5 +1,5 @@ import styled from 'styled-components' -import sx from './sx' +import sx from '../../sx' const UnstyledTextInput = styled.input` border: 0;