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 */