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