the checked property of RowProps has been changed to optional

This commit is contained in:
Elyor Djalilov 2024-07-10 16:54:42 +05:00
parent 5f6fff52ae
commit b52dea8c84

View File

@ -32,7 +32,7 @@ export type TMode = "modern" | "default";
export interface RowProps {
/** Required for hosting the Checkbox component. Its location is always fixed in the first position.
* If there is no value, the occupied space is distributed among the other child elements. */
checked: boolean;
checked?: boolean;
/** Displays the child elements */
children?: React.ReactNode;
/** Accepts class */