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