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