diff --git a/src/Popup/Components/CheckBox.tsx b/src/Popup/Components/CheckBox.tsx index d7a3846..c90f566 100644 --- a/src/Popup/Components/CheckBox.tsx +++ b/src/Popup/Components/CheckBox.tsx @@ -1,12 +1,12 @@ import { Label, Checkbox } from 'theme-ui' -interface SystemPageProps { +interface CheckBoxProps { title: string onChange?: () => void checked?: boolean } -const CheckBox = ({ title, onChange, checked }: SystemPageProps) => { +const CheckBox = ({ title, onChange, checked }: CheckBoxProps) => { return (