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