diff --git a/app/components/Switch.js b/app/components/Switch.js index aaa08f18..172c54e9 100644 --- a/app/components/Switch.js +++ b/app/components/Switch.js @@ -13,17 +13,23 @@ type Props = {| id?: string, |}; -function Switch({ width = 38, height = 20, label, ...props }: Props) { +function Switch({ width = 38, height = 20, label, disabled, ...props }: Props) { const component = ( - + ); if (label) { return ( -