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