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