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