File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
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 ) ;
@@ -239,15 +240,12 @@ function Canvas(props: {}): JSX.Element {
239
240
position : 'absolute' ,
240
241
left : remoteCursor . x + 'px' ,
241
242
top : remoteCursor . y - 68 + 'px' ,
242
- //style
243
- width : '10px' ,
244
- height : '10px' ,
245
- borderRadius : '50%' ,
246
- backgroundColor : '#a5ead6' ,
243
+ //cursor style
244
+ fontSize : '40px' ,
247
245
color : '#46c0a5'
248
246
} }
249
247
>
250
- { ' ' }
248
+ { < GiBoba /> }
251
249
{ remoteCursor . remoteUserName }
252
250
</ div >
253
251
) }
You can’t perform that action at this time.
0 commit comments