import { Field, Textarea } from "@fluentui/react-components"; interface CommandFieldProps { label: string; value: string; onChange: (v: string) => void; } export function CommandField({ label, value, onChange }: CommandFieldProps): React.JSX.Element { return (