import clsx from "clsx" import TaxesIcon from "../../fundamentals/icons/taxes-icon" import Tooltip from "../tooltip" type Props = { includesTax?: boolean } const IncludesTaxTooltip = ({ includesTax }: Props) => { return (
) } export default IncludesTaxTooltip