changed icon as it was not visiable

This commit is contained in:
Dustin 2025-06-25 14:20:39 -04:00
parent 92d9581695
commit 6cb2c55afd
2 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@ import { useStore } from '@nanostores/react';
import { ClientOnly } from 'remix-utils/client-only'; import { ClientOnly } from 'remix-utils/client-only';
import { chatStore } from '~/lib/stores/chat'; import { chatStore } from '~/lib/stores/chat';
import { classNames } from '~/utils/classNames'; import { classNames } from '~/utils/classNames';
import { HeaderActionButtons } from './HeaderActionButtons.client'; import { ons } from './ons.client';
import { ChatDescription } from '~/lib/persistence/ChatDescription.client'; import { ChatDescription } from '~/lib/persistence/ChatDescription.client';
export function Header() { export function Header() {
@ -31,7 +31,7 @@ export function Header() {
<ClientOnly> <ClientOnly>
{() => ( {() => (
<div className="mr-1"> <div className="mr-1">
<HeaderActionButtons /> <ons />
</div> </div>
)} )}
</ClientOnly> </ClientOnly>

View File

@ -3,9 +3,9 @@ import { chatStore } from '~/lib/stores/chat';
import { workbenchStore } from '~/lib/stores/workbench'; import { workbenchStore } from '~/lib/stores/workbench';
import { classNames } from '~/utils/classNames'; import { classNames } from '~/utils/classNames';
interface HeaderActionButtonsProps {} interface onsProps {}
export function HeaderActionButtons({}: HeaderActionButtonsProps) { export function ons({}: onsProps) {
const showWorkbench = useStore(workbenchStore.showWorkbench); const showWorkbench = useStore(workbenchStore.showWorkbench);
const { showChat } = useStore(chatStore); const { showChat } = useStore(chatStore);
@ -23,7 +23,7 @@ export function HeaderActionButtons({}: HeaderActionButtonsProps) {
} }
}} }}
> >
<div className="i-bolt:chat text-sm" /> <div className="i-ph:chat-text-bold" />
</Button> </Button>
<div className="w-[1px] bg-bolt-elements-borderColor" /> <div className="w-[1px] bg-bolt-elements-borderColor" />
<Button <Button