ソースを参照

fix: fill icon

Konstantinos Kaloutas 3 年 前
コミット
e642b1f505

+ 1 - 1
tldraw/apps/tldraw-logseq/src/components/ContextBar/contextBarActionFactory.tsx

@@ -326,7 +326,7 @@ const NoFillAction = observer(() => {
       pressed={noFill}
       onPressedChange={handleChange}
     >
-      {noFill ? <TablerIcon name="eye-off" /> : <TablerIcon name="eye" />}
+      <TablerIcon name={noFill ?  "droplet-off" : "droplet"} />
     </ToggleInput>
   )
 })