import type { SVGProps } from "react"; export interface ShieldXmarkIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function ShieldXmarkIcon({ className = "", size = 24, color = "currentColor", ...props }: ShieldXmarkIconProps) { return ( ); }