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