import React from 'react'; import classNames from 'classnames'; import { type Control } from '@teambit/compositions.ui.composition-live-controls'; import styles from './live-control-panel.module.scss'; import { getInputComponent } from './live-control-input'; export function LiveControls({ defs, values, onChange, renderLabel, }: { defs: Array; values: Record; onChange: (key: string, value: any) => void; renderLabel?: (field: Control) => React.ReactNode; }) { return ( ); }