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