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