import { JusticeScale01Icon } from "@hugeicons/core-free-icons"; import { cn } from "@/lib/utils"; import { Icon } from "@/components/shared/icon"; type AppLogoProps = { compact?: boolean; className?: string; }; export function AppLogo({ compact = false, className }: AppLogoProps) { return (
{!compact ? (

Courtrix

كورتريكس

) : null}
); }