import {Popover, PopoverTrigger, PopoverContent, Button, Avatar, AvatarImage, AvatarFallback, Separator} from '@openlite/ui'
export default function App() {
return(
<Popover>
<PopoverTrigger>
<Button>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M6.578 15.482c-1.415.842-5.125 2.562-2.865 4.715C4.816 21.248 6.045 22 7.59 22h8.818c1.546 0 2.775-.752 3.878-1.803c2.26-2.153-1.45-3.873-2.865-4.715a10.66 10.66 0 0 0-10.844 0M16.5 6.5a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0" color="currentColor"/></svg>
Profile
</Button>
</PopoverTrigger>
<PopoverContent>
<div className='flex items-center gap-3 pb-2'>
<Avatar size="lg">
<AvatarImage src="/example-gerzon.jpeg" alt="Avatar" className="w-full h-full rounded-md object-cover" />
<AvatarFallback>GE</AvatarFallback>
</Avatar>
<article>
<h2 className='font-semibold text-xl'>Gerzon</h2>
<p>Admin</p>
</article>
</div>
<Separator />
<div className='flex gap-2 items-center hover:bg-default-50 p-2 rounded-md mt-2'>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" color="currentColor"><path d="M2 22h20M18 9h-4c-2.482 0-3 .518-3 3v10h10V12c0-2.482-.518-3-3-3"/><path d="M15 22H3V5c0-2.482.518-3 3-3h6c2.482 0 3 .518 3 3v4M3 6h3m-3 4h3m-3 4h3m9-1h2m-2 3h2m-1 6v-3"/></g></svg>
<h4 className='cursor-pointer'>ZXL Construction</h4>
</div>
<div className='flex gap-2 items-center hover:bg-default-50 p-2 rounded-md'>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" color="currentColor"><path d="M20.25 6.75L18 9h-2m3.5-2.25a.75.75 0 1 0 1.5 0a.75.75 0 0 0-1.5 0m.75 10.5L18 15h-2m3.5 2.25a.75.75 0 1 1 1.5 0a.75.75 0 0 1-1.5 0m.75-5.25H12m7.5 0a.75.75 0 1 0 1.5 0a.75.75 0 0 0-1.5 0m-10 7h.009"/><path d="M16 6c-.08-1.42-.302-2.323-.909-2.975C14.136 2 12.598 2 9.523 2S4.911 2 3.955 3.025S3 5.7 3 9v6c0 3.3 0 4.95.955 5.975C4.911 22 6.448 22 9.523 22s4.613 0 5.568-1.025c.607-.652.828-1.556.909-2.975"/></g></svg>
<h4 className='cursor-pointer'>(929)392-4431</h4>
</div>
<div className='flex gap-2 items-center hover:bg-default-50 p-2 rounded-md'>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" color="currentColor"><path d="m2 6l6.913 3.917c2.549 1.444 3.625 1.444 6.174 0L22 6"/><path d="M2.016 13.476c.065 3.065.098 4.598 1.229 5.733c1.131 1.136 2.705 1.175 5.854 1.254c1.94.05 3.862.05 5.802 0c3.149-.079 4.723-.118 5.854-1.254c1.131-1.135 1.164-2.668 1.23-5.733c.02-.986.02-1.966 0-2.952c-.066-3.065-.099-4.598-1.23-5.733c-1.131-1.136-2.705-1.175-5.854-1.254a115 115 0 0 0-5.802 0c-3.149.079-4.723.118-5.854 1.254c-1.131 1.135-1.164 2.668-1.23 5.733a69 69 0 0 0 0 2.952"/></g></svg>
<h4 className='cursor-pointer'>Joelf@zxlconstruction</h4>
</div>
</PopoverContent>
</Popover>
)
}