feat(app): v2 desktop UI improvements (#29689)

Co-authored-by: Brendan Allan <git@brendonovich.dev>
Co-authored-by: Brendan Allan <14191578+Brendonovich@users.noreply.github.com>
This commit is contained in:
Aarav Sareen
2026-06-02 00:39:09 +05:30
committed by GitHub
parent 2bf85b8479
commit 363d6d1a26
80 changed files with 3576 additions and 576 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ export interface ButtonV2Props
extends ComponentProps<typeof Kobalte>,
Pick<ComponentProps<"button">, "class" | "classList" | "children"> {
size?: "small" | "normal" | "large"
variant?: "neutral" | "contrast" | "ghost"
variant?: "neutral" | "contrast" | "ghost" | "ghost-muted"
icon?: IconProps["name"]
}
@@ -27,7 +27,7 @@ export function ButtonV2(props: ButtonV2Props) {
}}
>
<Show when={resolvedIcon()}>
<Icon name={resolvedIcon()!} size="small" />
<Icon name={resolvedIcon()!} />
</Show>
{props.children}
</Kobalte>