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