interface IWidget { label?: string; content?: React.ReactNode; } const ExportSettingLayoutWidget = ({ label, content }: IWidget) => { return (