import { useRosettaColors } from "@/app/hooks/useRosettaColors"; import { Popover, Text } from "@mantine/core"; import { useDisclosure } from "@mantine/hooks"; import { IconLock } from "@tabler/icons-react"; export function PopoverLockIconAvatar() { const [opened, { close, open }] = useDisclosure(false); const colors = useRosettaColors(); return ( This avatar is end-to-end encrypted ) }