import { TextArea, Tooltip } from '@janhq/joi' import { InfoIcon } from 'lucide-react' type Props = { title: string disabled?: boolean name: string description: string placeholder: string value: string onValueChanged?: (e: string | number | boolean) => void } const ModelConfigInput = ({ title, disabled = false, value, description, placeholder, onValueChanged, }: Props) => { return (

{title}

} content={description} />