Skip to content

Commit ffb4fcc

Browse files
committed
boba cursor lol
1 parent a540bcd commit ffb4fcc

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

app/src/components/main/Canvas.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { RootState } from '../../redux/store';
1515
import { combineStyles } from '../../helperFunctions/combineStyles';
1616
import renderChildren from '../../helperFunctions/renderChildren';
1717
import { emitEvent, getSocket } from '../../helperFunctions/socket';
18+
import { GiBoba } from "react-icons/gi";
1819

1920
function Canvas(props: {}): JSX.Element {
2021
const state = useSelector((store: RootState) => store.appState);
@@ -240,14 +241,15 @@ function Canvas(props: {}): JSX.Element {
240241
left: remoteCursor.x + 'px',
241242
top: remoteCursor.y - 68 + 'px',
242243
//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',
247249
color: '#46c0a5'
248250
}}
249251
>
250-
{' '}
252+
{<GiBoba />}
251253
{remoteCursor.remoteUserName}
252254
</div>
253255
)}

0 commit comments

Comments
 (0)