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