+);
+
+export default DeckGLControlsSection;
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/FilterControlsSection.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/FilterControlsSection.tsx
new file mode 100644
index 00000000000..48a700f4c93
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/FilterControlsSection.tsx
@@ -0,0 +1,303 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { FC } from 'react';
+import { t } from '@superset-ui/core';
+import { Switch, Select, Input, InputNumber } from 'antd';
+
+export interface FilterControlsSectionProps {
+ filterType: 'select' | 'range' | 'time' | 'time_column' | 'time_grain';
+ showMultiple?: boolean;
+ showSearch?: boolean;
+ showParentFilter?: boolean;
+ showDefaultValue?: boolean;
+ showInverseSelection?: boolean;
+ showDateFilter?: boolean;
+ values?: Record;
+ onChange?: (name: string, value: any) => void;
+}
+
+const FilterControlsSection: FC = ({
+ filterType,
+ showMultiple = true,
+ showSearch = true,
+ showParentFilter = true,
+ showDefaultValue = true,
+ showInverseSelection = false,
+ showDateFilter = false,
+ values = {},
+ onChange = () => {},
+}) => {
+ const isSelect = filterType === 'select';
+ const isRange = filterType === 'range';
+ const isTime = filterType === 'time';
+ const isTimeColumn = filterType === 'time_column';
+ const isTimeGrain = filterType === 'time_grain';
+
+ return (
+
+ ) : (
+ onChange('defaultValue', e.target.value)}
+ placeholder={t('Enter default value')}
+ />
+ )}
+
+ {t('Default value to use when filter is first loaded')}
+
+