diff --git a/packages/html-reporter/src/checkbox.css b/packages/html-reporter/src/checkbox.css
new file mode 100644
index 0000000000000..2f935069a5733
--- /dev/null
+++ b/packages/html-reporter/src/checkbox.css
@@ -0,0 +1,21 @@
+/*
+ Copyright (c) Microsoft Corporation.
+ Licensed 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.
+*/
+.setting {
+ line-height: 38px;
+ padding-left: 9px;
+ }
+
+ .default {
+ margin-right: 7px;
+ }
+
\ No newline at end of file
diff --git a/packages/html-reporter/src/checkbox.tsx b/packages/html-reporter/src/checkbox.tsx
new file mode 100644
index 0000000000000..432e8f09b4037
--- /dev/null
+++ b/packages/html-reporter/src/checkbox.tsx
@@ -0,0 +1,47 @@
+/*
+ Copyright (c) Microsoft Corporation.
+ Licensed 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 * as React from 'react';
+import './checkbox.css';
+
+export type Check = {
+ value: T;
+ set: (value: T) => void;
+ name: string;
+ title?: string;
+};
+
+export const CheckBox: React.FunctionComponent<{
+ checkBoxSettings: Check[];
+ }> = ({ checkBoxSettings }) => {
+ return (
+ <>
+ {checkBoxSettings.map(({ value, set, name, title }) => {
+ const labelId = `checkBoxSetting-${name}`;
+
+ return (
+