import { api_host } from '@/utils/api'; import classNames from 'classnames'; import { Popover, PopoverContent, PopoverTrigger } from '../ui/popover'; interface IImage { id: string; className?: string; onClick?(): void; } const Image = ({ id, className, ...props }: IImage) => { return ( ); }; export default Image; export const ImageWithPopover = ({ id }: { id: string }) => { return ( ); };