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