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