From 5ab285fb85c1b54a0e591d18214267d0a87ace84 Mon Sep 17 00:00:00 2001 From: Steve Ruiz Date: Tue, 30 Apr 2024 11:17:27 +0100 Subject: [PATCH] Fix missing icon (#3652) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR fixes the missing icon for checkbox-empty. ### Change Type - [x] `sdk` — Changes the tldraw SDK - [x] `bugfix` — Bug fix ### Test Plan 1. Open the page menu 2. Create a new page 3. Should be no missing icon --- .../ui/components/primitives/Button/TldrawUiButtonCheck.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/tldraw/src/lib/ui/components/primitives/Button/TldrawUiButtonCheck.tsx b/packages/tldraw/src/lib/ui/components/primitives/Button/TldrawUiButtonCheck.tsx index 8909cd0b3..da9558310 100644 --- a/packages/tldraw/src/lib/ui/components/primitives/Button/TldrawUiButtonCheck.tsx +++ b/packages/tldraw/src/lib/ui/components/primitives/Button/TldrawUiButtonCheck.tsx @@ -5,7 +5,5 @@ export type TLUiButtonCheckProps = { checked: boolean } /** @public */ export function TldrawUiButtonCheck({ checked }: TLUiButtonCheckProps) { - return ( - - ) + return }