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