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