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