import { ActorAvatar } from "./ActorAvatar.tsx"; import { Text } from "./Text.tsx"; interface AvatarInputProps { profile?: { displayName?: string; description?: string; avatar?: string; handle?: string; }; } export function AvatarInput({ profile }: AvatarInputProps) { return (