'use client'; import { User2Icon } from 'lucide-react'; import clsx from 'clsx'; import { Button } from 'components/ui/button'; function UserButton(props: any) { const buttonClasses = 'relative flex w-full items-center justify-center rounded-full bg-blue-600 p-4 tracking-wide text-white'; //const disabledClasses = 'cursor-not-allowed opacity-60 hover:opacity-60'; return ( <> ); } export function UserIcon() { return ; }