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