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