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