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