diff --git a/ui/src/components/certimate/Version.tsx b/ui/src/components/certimate/Version.tsx index f8023ec2..626e8809 100644 --- a/ui/src/components/certimate/Version.tsx +++ b/ui/src/components/certimate/Version.tsx @@ -3,13 +3,17 @@ import { BookOpen } from "lucide-react"; import { Separator } from "@/components/ui/separator"; import { version } from "@/domain/version"; +import { cn } from "@/lib/utils"; -const Version = () => { +type VersionProps = { + className?: string; +}; + +const Version = ({ className }: VersionProps) => { const { t } = useTranslation(); return ( -