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