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