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