import justiceImg from "@/assets/justice-icon.png"; import { cn } from "@/lib/utils"; interface JusticeIconProps { className?: string; /** When true, inverts the image to render white (for dark backgrounds). */ invert?: boolean; alt?: string; } export function JusticeIcon({ className, invert = false, alt = "Lady Justice" }: JusticeIconProps) { return ( {alt} ); }