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