File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import { RootState } from '../../redux/store';
15
15
import { combineStyles } from '../../helperFunctions/combineStyles' ;
16
16
import renderChildren from '../../helperFunctions/renderChildren' ;
17
17
import { emitEvent , getSocket } from '../../helperFunctions/socket' ;
18
+ import { GiBoba } from "react-icons/gi" ;
18
19
19
20
function Canvas ( props : { } ) : JSX . Element {
20
21
const state = useSelector ( ( store : RootState ) => store . appState ) ;
@@ -240,14 +241,15 @@ function Canvas(props: {}): JSX.Element {
240
241
left : remoteCursor . x + 'px' ,
241
242
top : remoteCursor . y - 68 + 'px' ,
242
243
//style
243
- width : '10px' ,
244
- height : '10px' ,
245
- borderRadius : '50%' ,
246
- backgroundColor : '#a5ead6' ,
244
+ // width: '15px',
245
+ // height: '15px',
246
+ // borderRadius: '50%',
247
+ // backgroundColor: '#a5ead6',
248
+ fontSize : '40px' ,
247
249
color : '#46c0a5'
248
250
} }
249
251
>
250
- { ' ' }
252
+ { < GiBoba /> }
251
253
{ remoteCursor . remoteUserName }
252
254
</ div >
253
255
) }
You can’t perform that action at this time.
0 commit comments