Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/ui/src/lib/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ export const playIcon = (
export const refreshIcon = (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
<path
fill="none"
d="M21.8883 13.5C21.1645 18.3113 17.013 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C16.1006 2 19.6248 4.46819 21.1679 8"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
fill="none"
d="M17 8H21.4C21.7314 8 22 7.73137 22 7.4V3"
stroke="currentColor"
strokeWidth="1.5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ import { CopyButton } from '@/components/copy-button';
import { Markdown } from '@/components/markdown';
import { useConnector, type LoadedAiSession } from '@/data/core';
import { useLocalMediaDataUrl } from '@/data/queries/use-local-media';
import { refreshIcon } from '@/lib/icons';
import { ThinkingIndicator } from '../thinking-indicator';
import styles from './style.module.css';
import type { SessionEntry } from '@earendil-works/pi-coding-agent';
Expand Down Expand Up @@ -586,6 +587,8 @@ function getToolIcon( name: string, input: Record< string, unknown > | undefined
return capturePhoto;
case 'inspect_design':
return search;
case 'refresh_browser':
return refreshIcon;
case 'share_screenshot':
return share;
case 'validate_blocks':
Expand Down