import { TaxInfoResponse } from '@/hooks/useBillingTax';

export const isTaxApplicable = (
  taxInfo: TaxInfoResponse | null | undefined
): boolean => {
  return (taxInfo?.tax_rate || 0) > 0;
};

export const calculateTaxAmount = (
  taxInfo: TaxInfoResponse | null | undefined,
  price: number
): number => {
  return (taxInfo?.tax_rate || 0) * price;
};
