import * as React from 'react'; export const FieldGroupRoot: React.FC<{ children: React.ReactNode; name: string }> = ({ children, name }) => (
{children}
);