import { CircleUser } from 'lucide-react'; import React from 'react'; interface UserIconProps { customer: { uuid: string; fullName: string; email: string; }; accountUrl: string; loginUrl: string; } export default function UserIcon({ customer, accountUrl, loginUrl }: UserIconProps) { return (
); } export const layout = { areaId: 'headerMiddleRight', sortOrder: 10 }; export const query = ` query Query { customer: currentCustomer { uuid fullName email } accountUrl: url(routeId: "account") loginUrl: url(routeId: "login") } `;