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