import * as React from 'react'; export interface RightArrow64Props extends React.SVGProps { ariaLabel?: string } export default function RightArrow64({ ariaLabel, ...props }: RightArrow64Props) { return ( ); }