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