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