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