Reference: Dashboard SDKHooksuseItemSizeOn this pageuseItemSizeHook that returns the size of the widget in pixels.ReturnsThe ItemSize of the widget.Examplesrc/widgets/example/Example.tsximport React from 'react'import {useItemSize} from '@modbros/dashboard-sdk'export default function Example() { const {width, height} = useItemSize() return null}