import React from 'react'; import { UseFormRegister } from 'react-hook-form'; import { Typography, Input, IconButton } from '@material-tailwind/react'; import { EnvironmentVariablesFormValues } from './EnvironmentVariablesTabPanel'; interface EnvironmentVariableProps { onDelete: () => void; register: UseFormRegister; index: number; } const EnvironmentVariable = ({ onDelete, register, index, }: EnvironmentVariableProps) => { return (
Key
Value
onDelete()}> {'>'}
); }; export default EnvironmentVariable;