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