|
|
@ -6,9 +6,9 @@ import { |
|
|
|
|
|
|
|
|
|
|
|
import { GREY, TEXT, UNSELECTED } from '../../lib/consts/DEFAULT_THEME'; |
|
|
|
import { GREY, TEXT, UNSELECTED } from '../../lib/consts/DEFAULT_THEME'; |
|
|
|
|
|
|
|
|
|
|
|
const OutlinedInput = ( |
|
|
|
type OutlinedInputProps = MUIOutlinedInputProps; |
|
|
|
outlinedInputProps: MUIOutlinedInputProps, |
|
|
|
|
|
|
|
): JSX.Element => { |
|
|
|
const OutlinedInput = (outlinedInputProps: OutlinedInputProps): JSX.Element => { |
|
|
|
const { label, sx } = outlinedInputProps; |
|
|
|
const { label, sx } = outlinedInputProps; |
|
|
|
const combinedSx = { |
|
|
|
const combinedSx = { |
|
|
|
color: GREY, |
|
|
|
color: GREY, |
|
|
@ -49,4 +49,6 @@ const OutlinedInput = ( |
|
|
|
); |
|
|
|
); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type { OutlinedInputProps }; |
|
|
|
|
|
|
|
|
|
|
|
export default OutlinedInput; |
|
|
|
export default OutlinedInput; |
|
|
|