diff --git a/lib/checkbox.tsx b/lib/checkbox.tsx index c43da36..7e20f40 100644 --- a/lib/checkbox.tsx +++ b/lib/checkbox.tsx @@ -1,17 +1,20 @@ +import classNames from "classnames"; import React from "react"; type CheckboxProps = { label: string; onChange: (value: boolean) => void; value: boolean; + disabled?: boolean; }; export const Checkbox: React.FC = (props) => { return ( -