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