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