summaryrefslogtreecommitdiff
path: root/frontend/components/prism/CurrencyWarning.tsx
blob: c4f9097c5746b4759c092674ad9fa163998e3fc4 (plain)
1
2
3
4
5
6
7
8
type Props = {
  warning: string | null | undefined;
};

export function CurrencyWarning({ warning }: Props) {
  if (!warning) return null;
  return <span className="psm-currency-warning">{warning}</span>;
}