Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1580 Rev 1581
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import { useDispatch, useSelector } from 'react-redux'
2
import { useDispatch, useSelector } from 'react-redux'
3
import { Avatar, Box, Typography, styled } from '@mui/material'
3
import { Avatar, Box, Button, Typography, styled } from '@mui/material'
4
import {
4
import {
5
  Image,
5
  Image,
6
  Create,
6
  Create,
7
  Article,
7
  Article,
8
  PostAdd,
8
  PostAdd,
Línea 13... Línea 13...
13
import { shareModalTypes } from '@app/redux/share-modal/shareModal.types'
13
import { shareModalTypes } from '@app/redux/share-modal/shareModal.types'
Línea 14... Línea 14...
14
 
14
 
15
import WidgetWrapper from '@app/components/widgets/WidgetLayout'
15
import WidgetWrapper from '@app/components/widgets/WidgetLayout'
Línea 16... Línea 16...
16
import Input from '@app/components/UI/Input'
16
import Input from '@app/components/UI/Input'
17
 
17
 
18
const Option = styled(Box)(({ theme }) => ({
18
const Option = styled(Button)(({ theme }) => ({
19
  borderRadius: '50%',
19
  borderRadius: '50%',
20
  cursor: 'pointer',
20
  cursor: 'pointer',
21
  padding: 5,
21
  padding: 5,
Línea 59... Línea 59...
59
          type='text'
59
          type='text'
60
          readOnly
60
          readOnly
61
          icon={Create}
61
          icon={Create}
62
          placeholder={labels.what_are_you_thinking}
62
          placeholder={labels.what_are_you_thinking}
63
          onClick={() => onClickHandler(shareModalTypes.POST)}
63
          onClick={() => onClickHandler(shareModalTypes.POST)}
-
 
64
          sx={{ width: '100%' }}
-
 
65
          primary={false}
64
        />
66
        />
65
      </Box>
67
      </Box>
Línea 66... Línea 68...
66
 
68
 
67
      <Box display='flex' gap={1} justifyContent='space-between'>
69
      <Box display='flex' gap={1} justifyContent='space-between'>