import { TaxExclusive, TaxInclusive } from "@medusajs/icons" import { Tooltip } from "@medusajs/ui" import { useTranslation } from "react-i18next" type IncludesTaxTooltipProps = { includesTax?: boolean } export const IncludesTaxTooltip = ({ includesTax, }: IncludesTaxTooltipProps) => { const { t } = useTranslation() return ( {includesTax ? ( ) : ( )} ) }