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