summaryrefslogtreecommitdiffstats
path: root/src/components/molecules/layout/widget.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/layout/widget.tsx')
-rw-r--r--src/components/molecules/layout/widget.tsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/components/molecules/layout/widget.tsx b/src/components/molecules/layout/widget.tsx
index c04362a..feb2add 100644
--- a/src/components/molecules/layout/widget.tsx
+++ b/src/components/molecules/layout/widget.tsx
@@ -1,5 +1,7 @@
-import { FC, useState } from 'react';
-import HeadingButton, { HeadingButtonProps } from '../buttons/heading-button';
+import { FC, ReactNode, useState } from 'react';
+import HeadingButton, {
+ type HeadingButtonProps,
+} from '../buttons/heading-button';
import styles from './widget.module.scss';
export type WidgetProps = Pick<
@@ -7,6 +9,10 @@ export type WidgetProps = Pick<
'expanded' | 'level' | 'title'
> & {
/**
+ * The widget body.
+ */
+ children: ReactNode;
+ /**
* Set additional classnames to the widget wrapper.
*/
className?: string;