import React from 'react'; interface IconProps extends React.SVGProps { size?: string | number; width?: string | number; height?: string | number; spin?: boolean; rtl?: boolean; color?: string; fill?: string; stroke?: string; } export default function Arrow(props: IconProps): import("react/jsx-runtime").JSX.Element; export {};