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