TaxDisclaimer.tsx13 lines · main
| 1 | import { cn } from 'ui' |
| 2 | |
| 3 | interface TaxDisclaimerProps { |
| 4 | className?: string |
| 5 | } |
| 6 | |
| 7 | export const TaxDisclaimer = ({ className }: TaxDisclaimerProps) => { |
| 8 | return ( |
| 9 | <p className={cn('text-xs text-foreground-muted', className)}> |
| 10 | Prices shown do not include applicable taxes. |
| 11 | </p> |
| 12 | ) |
| 13 | } |