import { UserMenu } from 'tvu-react-pilot' // DS is dark-default (:root tokens). Cards render on white, so wrap every story // on the DS's own dark surface — mirrors react-pilot App.tsx Card. const Surface = ({ children }: any) => (
{children}
) // The after-login account entry point: a solid-color initials/image avatar. // The account panel (header + actions[MenuList] + language toggle + sign-out) // opens on avatar click — an interaction-driven state that does NOT render in a // static card (same posture as PopupBox's body / Tooltip's hover). The avatar // trigger is the statically-renderable affordance; its props drive the panel live. export const Avatars = () => ( )