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