react-code-dataset / nivo /packages /core /src /hooks /useDimensions.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
533 Bytes
import { useMemo } from 'react'
import { defaultMargin } from '../defaults'
export const useDimensions = (width, height, partialMargin = {}) =>
useMemo(() => {
const margin = {
...defaultMargin,
...partialMargin,
}
return {
margin,
innerWidth: width - margin.left - margin.right,
innerHeight: height - margin.top - margin.bottom,
outerWidth: width,
outerHeight: height,
}
}, [width, height, partialMargin])