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