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