import { Input, InputProps } from '@/shared/Input/Input'
import { Stack, StackProps, styled } from '@mui/material'
export const StyledInput = styled(({ className, ...props }: InputProps) => {
return (
)
})(({ theme }) => ({
'& > .input': {
border: 'none',
background: theme.palette.secondary.main,
color: theme.palette.primary.main,
'& .adornment': {
color: theme.palette.primary.main,
},
},
}))
export const StyledItemAppContainer = styled(
(props: StackProps) => (
),
)(({ theme }) => ({
textDecoration: 'none',
boxShadow: 'none',
color: theme.palette.text.primary,
background: theme.palette.backgroundSecondary.default,
borderRadius: '12px',
padding: '0.5rem 1rem',
':hover': {
background: `${theme.palette.backgroundSecondary.default}95`,
},
}))