ShapeGroupData.js 192 B

123456789
  1. import createNS from '../../../utils/helpers/svg_elements';
  2. function ShapeGroupData() {
  3. this.it = [];
  4. this.prevViewData = [];
  5. this.gr = createNS('g');
  6. }
  7. export default ShapeGroupData;