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