'use client'; import { cn } from '@/lib/utils/cn'; import { AGENT_DEFAULT_AVATARS } from '@/lib/constants/agent-defaults'; interface AvatarPickerProps { readonly value: string; readonly onChange: (avatar: string) => void; } /** * A grid picker that lets the user choose one of the built-in agent avatars. */ export function AvatarPicker({ value, onChange }: AvatarPickerProps) { return (
{AGENT_DEFAULT_AVATARS.map((src) => ( ))}
); }