diff options
| author | Adam <[email protected]> | 2025-12-18 11:16:29 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-18 11:16:33 -0600 |
| commit | 6f43d030430e3c7ca74244885a0a5552681451b3 (patch) | |
| tree | 64ac86ca8557dae4eaf0b161f4aa53c90a5a24c4 | |
| parent | c868a4088d374534a5e33795b8cc419c75f3654e (diff) | |
| download | opencode-6f43d030430e3c7ca74244885a0a5552681451b3.tar.gz opencode-6f43d030430e3c7ca74244885a0a5552681451b3.zip | |
fix(desktop): checkbox render in safari fml
| -rw-r--r-- | packages/ui/src/components/checkbox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ui/src/components/checkbox.tsx b/packages/ui/src/components/checkbox.tsx index 558c4bbd2..b98639758 100644 --- a/packages/ui/src/components/checkbox.tsx +++ b/packages/ui/src/components/checkbox.tsx @@ -17,7 +17,7 @@ export function Checkbox(props: CheckboxProps) { <Kobalte.Control data-slot="checkbox-checkbox-control"> <Kobalte.Indicator data-slot="checkbox-checkbox-indicator"> {local.icon || ( - <svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"> + <svg viewBox="0 0 12 12" fill="none" width="10" height="10" xmlns="http://www.w3.org/2000/svg"> <path d="M3 7.17905L5.02703 8.85135L9 3.5" stroke="currentColor" |
