Add required prop to Checkbox. (#1030)

Fixes #1029.
This commit is contained in:
brunnerh 2022-01-22 16:43:53 +01:00 committed by GitHub
commit 201e03757b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 0 deletions

View file

@ -32,6 +32,12 @@ export interface CheckboxProps {
*/
skeleton?: boolean;
/**
* Set to `true` to mark the field as required
* @default false
*/
required?: boolean;
/**
* Set to `true` for the checkbox to be read-only
* @default false