import { cn } from "../lib/utils"; interface AcShieldProps { readonly value: number | undefined; readonly onClick?: () => void; readonly className?: string; } export function AcShield({ value, onClick, className }: AcShieldProps) { return ( ); }