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