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