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