blob: 87e93a5a93a1d8615c3e9a198e64f396d0aa2022 [file] [log] [blame]
import { Dimension } from '../types';
const DEFAULT_DIMENSION = { height: 20, width: 100 };
export default function getBBoxCeil(
node: SVGGraphicsElement,
defaultDimension: Dimension = DEFAULT_DIMENSION,
) {
const { width, height } = node.getBBox ? node.getBBox() : defaultDimension;
return {
height: Math.ceil(height),
width: Math.ceil(width),
};
}