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