Skip to content

Commit

Permalink
Increase size
Browse files Browse the repository at this point in the history
  • Loading branch information
jonfelixrico committed Apr 24, 2024
1 parent f57aeb3 commit 0b4ff12
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions client/src/modules/room/RoomDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ParticipantsList from '@/modules/participants/ParticipantsList'
import PadOptionsControls from '@/modules/pad/PadOptionsControls'
import Stack from 'react-bootstrap/Stack'
import PadTypeButton from '@/modules/room/PadTypeButton'
import { MdDraw, MdOutlineRectangle } from 'react-icons/md'

const VERSION = import.meta.env.VITE_VERSION_OVERRIDE || manifest.version

Expand All @@ -13,9 +14,13 @@ export default function RoomDrawer() {
<Row className="h-100 w-100">
<Col xs="auto" className="border-end">
<Stack gap={1}>
<PadTypeButton type="PATH">Path</PadTypeButton>
<PadTypeButton type="PATH">
<MdDraw size="24px" />
</PadTypeButton>

<PadTypeButton type="RECTANGLE">Rect</PadTypeButton>
<PadTypeButton type="RECTANGLE">
<MdOutlineRectangle size="24px" />
</PadTypeButton>
</Stack>
</Col>

Expand Down

0 comments on commit 0b4ff12

Please sign in to comment.