Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2850 | Rev 2867 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2850 Rev 2864
Línea 10... Línea 10...
10
} from '@mui/icons-material'
10
} from '@mui/icons-material'
Línea 11... Línea 11...
11
 
11
 
12
import { openShareModal } from '@app/redux/share-modal/shareModal.actions'
12
import { openShareModal } from '@app/redux/share-modal/shareModal.actions'
Línea 13... Línea -...
13
import { shareModalTypes } from '@app/redux/share-modal/shareModal.types'
-
 
14
 
13
import { shareModalTypes } from '@app/redux/share-modal/shareModal.types'
-
 
14
 
Línea 15... Línea 15...
15
import Input from '@app/components/UI/Input'
15
import Widget from '@app/components/UI/Widget'
16
import Widget from '@app/components/UI/Widget'
16
import Input from '@components/UI/inputs/Input'
17
 
17
 
18
const Option = styled(Button)(({ theme }) => ({
18
const Option = styled(Button)(({ theme }) => ({
Línea 64... Línea 64...
64
            }}
64
            }}
65
          />
65
          />
Línea 66... Línea 66...
66
 
66
 
67
          <Input
67
          <Input
68
            type='text'
-
 
69
            readOnly
-
 
70
            icon={Create}
68
            type='text'
71
            placeholder={labels.what_are_you_thinking}
69
            placeholder={labels.what_are_you_thinking}
72
            onClick={() => onClickHandler(shareModalTypes.POST)}
70
            onClick={() => onClickHandler(shareModalTypes.POST)}
-
 
71
            sx={{ width: '100%' }}
73
            sx={{ width: '100%' }}
72
            icon={<Create />}
-
 
73
            variant='primary'
74
            primary={false}
74
            readOnly
75
          />
75
          />
Línea 76... Línea 76...
76
        </Box>
76
        </Box>
77
 
77