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