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