diff options
| author | Adam <[email protected]> | 2025-12-01 16:26:06 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-01 16:27:12 -0600 |
| commit | 0acefd5c08d724d440071de2ff7bcee4b599ecad (patch) | |
| tree | d9a6fa63d59400b7f4240bed247265b171cc2d2b /packages/ui/src/components/icon-button.tsx | |
| parent | 0331931f562239abf3adaebfb18539adf6665359 (diff) | |
| download | opencode-0acefd5c08d724d440071de2ff7bcee4b599ecad.tar.gz opencode-0acefd5c08d724d440071de2ff7bcee4b599ecad.zip | |
fix: safari icons
Diffstat (limited to 'packages/ui/src/components/icon-button.tsx')
| -rw-r--r-- | packages/ui/src/components/icon-button.tsx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/packages/ui/src/components/icon-button.tsx b/packages/ui/src/components/icon-button.tsx index a3d91d830..f1832ce7f 100644 --- a/packages/ui/src/components/icon-button.tsx +++ b/packages/ui/src/components/icon-button.tsx @@ -22,11 +22,7 @@ export function IconButton(props: ComponentProps<"button"> & IconButtonProps) { [split.class ?? ""]: !!split.class, }} > - <Icon - data-slot="icon-button-icon" - name={props.icon} - size={split.iconSize ?? (split.size === "large" ? "normal" : "small")} - /> + <Icon name={props.icon} size={split.iconSize ?? (split.size === "large" ? "normal" : "small")} /> </Kobalte> ) } |
