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