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