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