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