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