import React from 'react' import { InfoIcon } from 'lucide-react' import { Tooltip } from '@chakra-ui/react' import { IProductDetail } from '~/types/product' import ImageUI from '~/components/ui/image' type Props = { product: IProductDetail } const Image = ({ product }: Props) => { return (