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