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