import { formatCurrency } from "@kit/shared/utils"; import { Badge } from "@kit/ui/badge"; import { cn } from "@kit/ui/utils"; export const PackageHeader = ({ title, tagColor, analysesNr, language, price, }: { title: string; tagColor: string; analysesNr: string; language: string; price: string | number; }) => { return (

{title}

{analysesNr}

{formatCurrency({ currencyCode: 'eur', locale: language, value: price, })}

); };