import React from "react"; export type FormContainerProps = { id: string; label: string; hideLabel?: boolean; required?: boolean; hideStar?: boolean; children: React.ReactNode; }; const FormContainer = ({ id, label, children, hideLabel, required, hideStar, }: FormContainerProps) => { return (
{!hideLabel && ( )} {children}
); }; export default FormContainer;