import { Box, Stack } from "@mui/material"; // Importing necessary components from Material-UI import React, { ReactNode } from "react"; interface ConditionGroupProps { label: string; children: ReactNode; spacing: number; } export const ConditionGroup: React.FC = ({ children, spacing, label, }) => { return ( {label} {children} ); };