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