From b52dea8c8491fdc6daebce1b96a2efa5692a62e7 Mon Sep 17 00:00:00 2001 From: Elyor Djalilov Date: Wed, 10 Jul 2024 16:54:42 +0500 Subject: [PATCH] the checked property of RowProps has been changed to optional --- packages/shared/components/row/Row.types.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shared/components/row/Row.types.tsx b/packages/shared/components/row/Row.types.tsx index be55e48ecd..62a7b36dff 100644 --- a/packages/shared/components/row/Row.types.tsx +++ b/packages/shared/components/row/Row.types.tsx @@ -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 */