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