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