import {styled} from '@mui/material/styles'; import {TypographyComponent as Typography} from '../../atoms'; const Container = styled('div')` width: 100%; display: flex; flex-direction: row; align-items: center; justify-content: space-between; border-width: 1px; border-style: solid; border-color: ${({theme}) => theme.palette.gray[300]}; padding-left: 12px; padding-right: 12px; border-radius: 8px; gap: 6px; `; const Input = styled('div')` flex: 1 1 0%; padding-top: 8px; padding-bottom: 8px; cursor: pointer; `; const Text = styled(Typography)` color: ${({theme}) => theme.palette.gray[700]}; `; const Placeholder = styled(Typography)` color: ${({theme}) => theme.palette.gray[300]}; `; export const TreeSelectInputStyle = { Container, Input, Text, Placeholder, };