get width()

in packages/svg-mixer/lib/image.js [35:39]


  get width() {
    const root = this._tree.root;
    const { width, viewBox } = root.attrs || {};
    return width || viewBox ? parseFloat(width || viewBox.split(' ')[2]) : undefined;
  }