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