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