fix(app): update all v1 new-session icons (#32017)

Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com>
This commit is contained in:
Aarav Sareen 2026-06-25 11:10:30 +05:30 committed by GitHub
commit 40ddede2b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 7 deletions

View file

@ -319,7 +319,7 @@ export function DraftTabItem(props: {
}}
class="flex h-full min-w-0 flex-1 flex-row items-center gap-1.5 overflow-hidden text-[13px] font-medium leading-5 text-v2-text-text-faint group-data-[active='true']:text-[var(--v2-text-text-base)]"
>
<span class="flex size-4 shrink-0 rotate-90 items-center justify-center">
<span class="flex size-4 shrink-0 items-center justify-center">
<IconV2 name="edit" />
</span>
<span class="truncate leading-5">{props.title}</span>

View file

@ -567,7 +567,6 @@ export function Titlebar(props: { update?: TitlebarUpdate }) {
>
<Button
variant="ghost"
icon={creating() ? "new-session-active" : "new-session"}
class="titlebar-icon w-8 h-6 p-0 box-border"
disabled={layout.sidebar.opened()}
tabIndex={layout.sidebar.opened() ? -1 : undefined}
@ -577,7 +576,9 @@ export function Titlebar(props: { update?: TitlebarUpdate }) {
}}
aria-label={language.t("command.session.new")}
aria-current={creating() ? "page" : undefined}
/>
>
<IconV2 name="edit" size="small" />
</Button>
</TooltipKeybind>
</div>
</div>