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