@mulsense/xnew 0.2.1 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/xnew.mjs CHANGED
@@ -203,7 +203,7 @@ class Timer {
203
203
  //----------------------------------------------------------------------------------------------------
204
204
  // utils
205
205
  //----------------------------------------------------------------------------------------------------
206
- const SYSTEM_EVENTS = ['-start', '-update', '-stop', '-finalize'];
206
+ const SYSTEM_EVENTS = ['start', 'update', 'stop', 'finalize'];
207
207
  //----------------------------------------------------------------------------------------------------
208
208
  // unit
209
209
  //----------------------------------------------------------------------------------------------------
@@ -281,6 +281,7 @@ class Unit {
281
281
  Unit.initialize(this, anchor);
282
282
  }
283
283
  static initialize(unit, anchor) {
284
+ var _a, _b;
284
285
  const backup = Unit.current;
285
286
  Unit.current = unit;
286
287
  unit._ = Object.assign(unit._, {
@@ -289,13 +290,15 @@ class Unit {
289
290
  anchor,
290
291
  state: 'invoked',
291
292
  tostart: true,
293
+ protected: false,
294
+ ancestors: [...(unit._.parent ? [unit._.parent] : []), ...((_b = (_a = unit._.parent) === null || _a === void 0 ? void 0 : _a._.ancestors) !== null && _b !== void 0 ? _b : [])],
292
295
  children: [],
293
296
  elements: [],
294
297
  promises: [],
295
298
  components: [],
296
299
  listeners: new MapMap(),
297
300
  defines: {},
298
- systems: { '-start': [], '-update': [], '-stop': [], '-finalize': [] },
301
+ systems: { start: [], update: [], stop: [], finalize: [] },
299
302
  });
300
303
  // nest html element
301
304
  if (typeof unit._.target === 'string') {
@@ -311,7 +314,7 @@ class Unit {
311
314
  if (unit._.state !== 'finalized' && unit._.state !== 'finalizing') {
312
315
  unit._.state = 'finalizing';
313
316
  unit._.children.forEach((child) => child.finalize());
314
- unit._.systems['-finalize'].forEach((listener) => Unit.scope(Unit.snapshot(unit), listener));
317
+ unit._.systems.finalize.forEach((listener) => Unit.scope(Unit.snapshot(unit), listener));
315
318
  unit.off();
316
319
  unit._.components.forEach((component) => Unit.component2units.delete(component, unit));
317
320
  if (unit._.elements.length > 0) {
@@ -388,7 +391,7 @@ class Unit {
388
391
  if (unit._.state === 'initialized' || unit._.state === 'stopped') {
389
392
  unit._.state = 'started';
390
393
  unit._.children.forEach((child) => Unit.start(child));
391
- unit._.systems['-start'].forEach((listener) => Unit.scope(Unit.snapshot(unit), listener));
394
+ unit._.systems.start.forEach((listener) => Unit.scope(Unit.snapshot(unit), listener));
392
395
  }
393
396
  else if (unit._.state === 'started') {
394
397
  unit._.children.forEach((child) => Unit.start(child));
@@ -398,13 +401,13 @@ class Unit {
398
401
  if (unit._.state === 'started') {
399
402
  unit._.state = 'stopped';
400
403
  unit._.children.forEach((child) => Unit.stop(child));
401
- unit._.systems['-stop'].forEach((listener) => Unit.scope(Unit.snapshot(unit), listener));
404
+ unit._.systems.stop.forEach((listener) => Unit.scope(Unit.snapshot(unit), listener));
402
405
  }
403
406
  }
404
407
  static update(unit) {
405
408
  if (unit._.state === 'started') {
406
409
  unit._.children.forEach((child) => Unit.update(child));
407
- unit._.systems['-update'].forEach((listener) => Unit.scope(Unit.snapshot(unit), listener));
410
+ unit._.systems.update.forEach((listener) => Unit.scope(Unit.snapshot(unit), listener));
408
411
  }
409
412
  }
410
413
  static reset() {
@@ -495,16 +498,20 @@ class Unit {
495
498
  }
496
499
  });
497
500
  }
498
- emit(type, ...args) {
501
+ static emit(type, ...args) {
499
502
  var _a, _b;
503
+ const current = Unit.current;
500
504
  if (type[0] === '+') {
501
505
  (_a = Unit.type2units.get(type)) === null || _a === void 0 ? void 0 : _a.forEach((unit) => {
502
506
  var _a;
503
- (_a = unit._.listeners.get(type)) === null || _a === void 0 ? void 0 : _a.forEach((item) => item.execute(...args));
507
+ const find = [unit, ...unit._.ancestors].find(u => u._.protected === true);
508
+ if (find === undefined || current._.ancestors.includes(find) === true || current === find) {
509
+ (_a = unit._.listeners.get(type)) === null || _a === void 0 ? void 0 : _a.forEach((item) => item.execute(...args));
510
+ }
504
511
  });
505
512
  }
506
513
  else if (type[0] === '-') {
507
- (_b = this._.listeners.get(type)) === null || _b === void 0 ? void 0 : _b.forEach((item) => item.execute(...args));
514
+ (_b = current._.listeners.get(type)) === null || _b === void 0 ? void 0 : _b.forEach((item) => item.execute(...args));
508
515
  }
509
516
  }
510
517
  }
@@ -561,7 +568,7 @@ class UnitTimer {
561
568
  }
562
569
  else if (timer.stack.length === 0) {
563
570
  timer.stack.push(Object.assign({ snapshot: Unit.snapshot(Unit.current) }, options));
564
- timer.unit.on('-finalize', () => { UnitTimer.next(timer); });
571
+ timer.unit.on('finalize', () => { UnitTimer.next(timer); });
565
572
  }
566
573
  else {
567
574
  timer.stack.push(Object.assign({ snapshot: Unit.snapshot(Unit.current) }, options));
@@ -570,7 +577,7 @@ class UnitTimer {
570
577
  static next(timer) {
571
578
  if (timer.stack.length > 0) {
572
579
  timer.unit = new Unit(Unit.current, UnitTimer.Component, timer.stack.shift());
573
- timer.unit.on('-finalize', () => { UnitTimer.next(timer); });
580
+ timer.unit.on('finalize', () => { UnitTimer.next(timer); });
574
581
  }
575
582
  }
576
583
  static Component(unit, options) {
@@ -591,227 +598,7 @@ class UnitTimer {
591
598
  counter++;
592
599
  }, duration: options.duration, iterations: options.iterations, easing: options.easing
593
600
  });
594
- unit.on('-finalize', () => timer.clear());
595
- }
596
- }
597
-
598
- const context = window.AudioContext ? new window.AudioContext() : (null);
599
- const master = context ? context.createGain() : (null);
600
- if (context) {
601
- master.gain.value = 1.0;
602
- master.connect(context.destination);
603
- }
604
- class AudioFile {
605
- constructor(path) {
606
- this.promise = fetch(path)
607
- .then((response) => response.arrayBuffer())
608
- .then((response) => context.decodeAudioData(response))
609
- .then((response) => { this.buffer = response; })
610
- .catch(() => {
611
- console.warn(`"${path}" could not be loaded.`);
612
- });
613
- this.amp = context.createGain();
614
- this.amp.gain.value = 1.0;
615
- this.amp.connect(master);
616
- this.fade = context.createGain();
617
- this.fade.gain.value = 1.0;
618
- this.fade.connect(this.amp);
619
- this.source = null;
620
- this.played = null;
621
- }
622
- set volume(value) {
623
- this.amp.gain.value = value;
624
- }
625
- get volume() {
626
- return this.amp.gain.value;
627
- }
628
- play({ offset = 0, fade = 0, loop = false } = {}) {
629
- if (this.buffer !== undefined && this.played === null) {
630
- this.source = context.createBufferSource();
631
- this.source.buffer = this.buffer;
632
- this.source.loop = loop;
633
- this.source.connect(this.fade);
634
- this.played = context.currentTime;
635
- this.source.playbackRate.value = 1;
636
- this.source.start(context.currentTime, offset / 1000);
637
- // Apply fade-in effect if fade duration is specified
638
- if (fade > 0) {
639
- this.fade.gain.setValueAtTime(0, context.currentTime);
640
- this.fade.gain.linearRampToValueAtTime(1.0, context.currentTime + fade / 1000);
641
- }
642
- this.source.onended = () => {
643
- var _a;
644
- this.played = null;
645
- (_a = this.source) === null || _a === void 0 ? void 0 : _a.disconnect();
646
- this.source = null;
647
- };
648
- }
649
- }
650
- pause({ fade = 0 } = {}) {
651
- var _a, _b;
652
- if (this.buffer !== undefined && this.played !== null) {
653
- const elapsed = (context.currentTime - this.played) % this.buffer.duration * 1000;
654
- // Apply fade-out effect if fade duration is specified
655
- if (fade > 0) {
656
- this.fade.gain.setValueAtTime(1.0, context.currentTime);
657
- this.fade.gain.linearRampToValueAtTime(0, context.currentTime + fade / 1000);
658
- (_a = this.source) === null || _a === void 0 ? void 0 : _a.stop(context.currentTime + fade / 1000);
659
- }
660
- else {
661
- (_b = this.source) === null || _b === void 0 ? void 0 : _b.stop(context.currentTime);
662
- }
663
- this.played = null;
664
- return elapsed;
665
- }
666
- }
667
- clear() {
668
- var _a;
669
- this.amp.disconnect();
670
- this.fade.disconnect();
671
- (_a = this.source) === null || _a === void 0 ? void 0 : _a.disconnect();
672
- }
673
- }
674
- const keymap = {
675
- 'A0': 27.500, 'A#0': 29.135, 'B0': 30.868,
676
- 'C1': 32.703, 'C#1': 34.648, 'D1': 36.708, 'D#1': 38.891, 'E1': 41.203, 'F1': 43.654, 'F#1': 46.249, 'G1': 48.999, 'G#1': 51.913, 'A1': 55.000, 'A#1': 58.270, 'B1': 61.735,
677
- 'C2': 65.406, 'C#2': 69.296, 'D2': 73.416, 'D#2': 77.782, 'E2': 82.407, 'F2': 87.307, 'F#2': 92.499, 'G2': 97.999, 'G#2': 103.826, 'A2': 110.000, 'A#2': 116.541, 'B2': 123.471,
678
- 'C3': 130.813, 'C#3': 138.591, 'D3': 146.832, 'D#3': 155.563, 'E3': 164.814, 'F3': 174.614, 'F#3': 184.997, 'G3': 195.998, 'G#3': 207.652, 'A3': 220.000, 'A#3': 233.082, 'B3': 246.942,
679
- 'C4': 261.626, 'C#4': 277.183, 'D4': 293.665, 'D#4': 311.127, 'E4': 329.628, 'F4': 349.228, 'F#4': 369.994, 'G4': 391.995, 'G#4': 415.305, 'A4': 440.000, 'A#4': 466.164, 'B4': 493.883,
680
- 'C5': 523.251, 'C#5': 554.365, 'D5': 587.330, 'D#5': 622.254, 'E5': 659.255, 'F5': 698.456, 'F#5': 739.989, 'G5': 783.991, 'G#5': 830.609, 'A5': 880.000, 'A#5': 932.328, 'B5': 987.767,
681
- 'C6': 1046.502, 'C#6': 1108.731, 'D6': 1174.659, 'D#6': 1244.508, 'E6': 1318.510, 'F6': 1396.913, 'F#6': 1479.978, 'G6': 1567.982, 'G#6': 1661.219, 'A6': 1760.000, 'A#6': 1864.655, 'B6': 1975.533,
682
- 'C7': 2093.005, 'C#7': 2217.461, 'D7': 2349.318, 'D#7': 2489.016, 'E7': 2637.020, 'F7': 2793.826, 'F#7': 2959.955, 'G7': 3135.963, 'G#7': 3322.438, 'A7': 3520.000, 'A#7': 3729.310, 'B7': 3951.066,
683
- 'C8': 4186.009,
684
- };
685
- const notemap = {
686
- '1m': 4.000, '2n': 2.000, '4n': 1.000, '8n': 0.500, '16n': 0.250, '32n': 0.125,
687
- };
688
- class Synthesizer {
689
- constructor(props) { this.props = props; }
690
- press(frequency, duration, wait) {
691
- var _a;
692
- const props = this.props;
693
- const fv = typeof frequency === 'string' ? keymap[frequency] : frequency;
694
- const dv = typeof duration === 'string' ? (notemap[duration] * 60 / ((_a = props.bpm) !== null && _a !== void 0 ? _a : 120)) : (typeof duration === 'number' ? (duration / 1000) : 0);
695
- const start = context.currentTime + (wait !== null && wait !== void 0 ? wait : 0) / 1000;
696
- const nodes = {};
697
- nodes.oscillator = context.createOscillator();
698
- nodes.oscillator.type = props.oscillator.type;
699
- nodes.oscillator.frequency.value = fv;
700
- if (props.oscillator.LFO) {
701
- nodes.oscillatorLFO = context.createOscillator();
702
- nodes.oscillatorLFODepth = context.createGain();
703
- nodes.oscillatorLFODepth.gain.value = fv * (Math.pow(2.0, props.oscillator.LFO.amount / 12.0) - 1.0);
704
- nodes.oscillatorLFO.type = props.oscillator.LFO.type;
705
- nodes.oscillatorLFO.frequency.value = props.oscillator.LFO.rate;
706
- nodes.oscillatorLFO.start(start);
707
- nodes.oscillatorLFO.connect(nodes.oscillatorLFODepth);
708
- nodes.oscillatorLFODepth.connect(nodes.oscillator.frequency);
709
- }
710
- nodes.amp = context.createGain();
711
- nodes.amp.gain.value = 0.0;
712
- nodes.target = context.createGain();
713
- nodes.target.gain.value = 1.0;
714
- nodes.amp.connect(nodes.target);
715
- nodes.target.connect(master);
716
- if (props.filter) {
717
- nodes.filter = context.createBiquadFilter();
718
- nodes.filter.type = props.filter.type;
719
- nodes.filter.frequency.value = props.filter.cutoff;
720
- nodes.oscillator.connect(nodes.filter);
721
- nodes.filter.connect(nodes.amp);
722
- }
723
- else {
724
- nodes.oscillator.connect(nodes.amp);
725
- }
726
- if (props.reverb) {
727
- nodes.convolver = context.createConvolver();
728
- nodes.convolver.buffer = impulseResponse({ time: props.reverb.time });
729
- nodes.convolverDepth = context.createGain();
730
- nodes.convolverDepth.gain.value = 1.0;
731
- nodes.convolverDepth.gain.value *= props.reverb.mix;
732
- nodes.target.gain.value *= (1.0 - props.reverb.mix);
733
- nodes.amp.connect(nodes.convolver);
734
- nodes.convolver.connect(nodes.convolverDepth);
735
- nodes.convolverDepth.connect(master);
736
- }
737
- if (props.oscillator.envelope) {
738
- const amount = fv * (Math.pow(2.0, props.oscillator.envelope.amount / 12.0) - 1.0);
739
- startEnvelope(nodes.oscillator.frequency, fv, amount, props.oscillator.envelope.ADSR);
740
- }
741
- if (props.amp.envelope) {
742
- startEnvelope(nodes.amp.gain, 0.0, props.amp.envelope.amount, props.amp.envelope.ADSR);
743
- }
744
- nodes.oscillator.start(start);
745
- if (dv > 0) {
746
- release();
747
- }
748
- else {
749
- return { release };
750
- }
751
- function release() {
752
- let stop = null;
753
- const end = dv > 0 ? dv : (context.currentTime - start);
754
- if (props.amp.envelope) {
755
- const ADSR = props.amp.envelope.ADSR;
756
- const adsr = [ADSR[0] / 1000, ADSR[1] / 1000, ADSR[2], ADSR[3] / 1000];
757
- const rate = adsr[0] === 0.0 ? 1.0 : Math.min(end / (adsr[0] + 0.001), 1.0);
758
- stop = start + Math.max((adsr[0] + adsr[1]) * rate, end) + adsr[3];
759
- }
760
- else {
761
- stop = start + end;
762
- }
763
- if (nodes.oscillatorLFO) {
764
- nodes.oscillatorLFO.stop(stop);
765
- }
766
- if (props.oscillator.envelope) {
767
- const amount = fv * (Math.pow(2.0, props.oscillator.envelope.amount / 12.0) - 1.0);
768
- stopEnvelope(nodes.oscillator.frequency, fv, amount, props.oscillator.envelope.ADSR);
769
- }
770
- if (props.amp.envelope) {
771
- stopEnvelope(nodes.amp.gain, 0.0, props.amp.envelope.amount, props.amp.envelope.ADSR);
772
- }
773
- nodes.oscillator.stop(stop);
774
- setTimeout(() => {
775
- var _a, _b, _c, _d, _e;
776
- nodes.oscillator.disconnect();
777
- nodes.amp.disconnect();
778
- nodes.target.disconnect();
779
- (_a = nodes.oscillatorLFO) === null || _a === void 0 ? void 0 : _a.disconnect();
780
- (_b = nodes.oscillatorLFODepth) === null || _b === void 0 ? void 0 : _b.disconnect();
781
- (_c = nodes.filter) === null || _c === void 0 ? void 0 : _c.disconnect();
782
- (_d = nodes.convolver) === null || _d === void 0 ? void 0 : _d.disconnect();
783
- (_e = nodes.convolverDepth) === null || _e === void 0 ? void 0 : _e.disconnect();
784
- }, 2000);
785
- }
786
- function stopEnvelope(param, base, amount, ADSR) {
787
- const end = dv > 0 ? dv : (context.currentTime - start);
788
- const rate = ADSR[0] === 0.0 ? 1.0 : Math.min(end / (ADSR[0] / 1000), 1.0);
789
- if (rate < 1.0) {
790
- param.cancelScheduledValues(start);
791
- param.setValueAtTime(base, start);
792
- param.linearRampToValueAtTime(base + amount * rate, start + ADSR[0] / 1000 * rate);
793
- param.linearRampToValueAtTime(base + amount * rate * ADSR[2], start + (ADSR[0] + ADSR[1]) / 1000 * rate);
794
- }
795
- param.linearRampToValueAtTime(base + amount * rate * ADSR[2], start + Math.max((ADSR[0] + ADSR[1]) / 1000 * rate, dv));
796
- param.linearRampToValueAtTime(base, start + Math.max((ADSR[0] + ADSR[1]) / 1000 * rate, end) + ADSR[3] / 1000);
797
- }
798
- function startEnvelope(param, base, amount, ADSR) {
799
- param.value = base;
800
- param.setValueAtTime(base, start);
801
- param.linearRampToValueAtTime(base + amount, start + ADSR[0] / 1000);
802
- param.linearRampToValueAtTime(base + amount * ADSR[2], start + (ADSR[0] + ADSR[1]) / 1000);
803
- }
804
- function impulseResponse({ time, decay = 2.0 }) {
805
- const length = context.sampleRate * time / 1000;
806
- const impulse = context.createBuffer(2, length, context.sampleRate);
807
- const ch0 = impulse.getChannelData(0);
808
- const ch1 = impulse.getChannelData(1);
809
- for (let i = 0; i < length; i++) {
810
- ch0[i] = (2 * Math.random() - 1) * Math.pow(1 - i / length, decay);
811
- ch1[i] = (2 * Math.random() - 1) * Math.pow(1 - i / length, decay);
812
- }
813
- return impulse;
814
- }
601
+ unit.on('finalize', () => timer.clear());
815
602
  }
816
603
  }
817
604
 
@@ -943,25 +730,6 @@ const xnew$1 = Object.assign(function (...args) {
943
730
  throw error;
944
731
  }
945
732
  },
946
- /**
947
- * Fetches a resource and registers the promise with the current component
948
- * @param url - URL to fetch
949
- * @param options - Optional fetch options (method, headers, body, etc.)
950
- * @returns UnitPromise wrapping the fetch promise
951
- * @example
952
- * xnew.fetch('/api/users').then(res => res.json()).then(data => console.log(data))
953
- */
954
- fetch(url, options) {
955
- try {
956
- const promise = fetch(url, options);
957
- Unit.current._.promises.push(promise);
958
- return new UnitPromise(promise);
959
- }
960
- catch (error) {
961
- console.error('xnew.promise(url: string, options?: object): ', error);
962
- throw error;
963
- }
964
- },
965
733
  /**
966
734
  * Creates a scoped callback that captures the current component context
967
735
  * @param callback - Function to wrap with current scope
@@ -993,6 +761,15 @@ const xnew$1 = Object.assign(function (...args) {
993
761
  throw error;
994
762
  }
995
763
  },
764
+ emit(type, ...args) {
765
+ try {
766
+ return Unit.emit(type, ...args);
767
+ }
768
+ catch (error) {
769
+ console.error('xnew.emit(type: string, ...args: any[]): ', error);
770
+ throw error;
771
+ }
772
+ },
996
773
  /**
997
774
  * Executes a callback once after a delay, managed by component lifecycle
998
775
  * @param timeout - Function to execute after Duration
@@ -1033,38 +810,17 @@ const xnew$1 = Object.assign(function (...args) {
1033
810
  transition(transition, duration = 0, easing = 'linear') {
1034
811
  return new UnitTimer({ transition, duration, easing, iterations: 1 });
1035
812
  },
1036
- audio: {
1037
- load(path) {
1038
- const music = new AudioFile(path);
1039
- const object = {
1040
- play(options) {
1041
- const unit = xnew$1();
1042
- if (music.played === null) {
1043
- music.play(options);
1044
- unit.on('-finalize', () => music.pause({ fade: options.fade }));
1045
- }
1046
- },
1047
- pause(options) {
1048
- music.pause(options);
1049
- }
1050
- };
1051
- return xnew$1.promise(music.promise).then(() => object);
1052
- },
1053
- synthesizer(props) {
1054
- return new Synthesizer(props);
1055
- },
1056
- get volume() {
1057
- return master.gain.value;
1058
- },
1059
- set volume(value) {
1060
- master.gain.value = value;
1061
- }
813
+ protect() {
814
+ Unit.current._.protected = true;
1062
815
  }
1063
816
  });
1064
817
 
1065
818
  function AccordionFrame(frame, { open = false, duration = 200, easing = 'ease' } = {}) {
1066
819
  const internal = xnew$1((internal) => {
1067
- return { frame, open, rate: 0.0, };
820
+ return {
821
+ frame, open, rate: 0.0,
822
+ emit(type, ...args) { xnew$1.emit(type, ...args); }
823
+ };
1068
824
  });
1069
825
  xnew$1.context('xnew.accordionframe', internal);
1070
826
  internal.on('-transition', ({ rate }) => internal.rate = rate);
@@ -1141,12 +897,12 @@ function AccordionContent(content, {} = {}) {
1141
897
  }
1142
898
 
1143
899
  function ResizeEvent(resize) {
1144
- const observer = new ResizeObserver((entries) => {
900
+ const observer = new ResizeObserver(xnew$1.scope((entries) => {
1145
901
  for (const entry of entries) {
1146
- resize.emit('-resize');
902
+ xnew$1.emit('-resize');
1147
903
  break;
1148
904
  }
1149
- });
905
+ }));
1150
906
  if (resize.element) {
1151
907
  observer.observe(resize.element);
1152
908
  }
@@ -1158,42 +914,57 @@ function ResizeEvent(resize) {
1158
914
  }
1159
915
  function KeyboardEvent(keyboard) {
1160
916
  const state = {};
1161
- window.addEventListener('keydown', keydown);
1162
- window.addEventListener('keyup', keyup);
1163
- function keydown(event) {
917
+ const keydown = xnew$1.scope((event) => {
1164
918
  state[event.code] = 1;
1165
- keyboard.emit('-keydown', { event, type: '-keydown', code: event.code });
919
+ xnew$1.emit('-keydown', { event, type: '-keydown', code: event.code });
1166
920
  if (['ArrowLeft', 'ArrowRight', 'ArrowUp', 'ArrowDown'].includes(event.code)) {
1167
- keyboard.emit('-keydown:arrow', { event, type: '-keydown:arrow', code: event.code, vector: getVector() });
921
+ xnew$1.emit('-keydown:arrow', { event, type: '-keydown:arrow', code: event.code, vector: getVector() });
1168
922
  }
1169
- }
1170
- function keyup(event) {
923
+ });
924
+ const keyup = xnew$1.scope((event) => {
1171
925
  state[event.code] = 0;
1172
- keyboard.emit('-keyup', { event, type: '-keyup', code: event.code });
926
+ xnew$1.emit('-keyup', { event, type: '-keyup', code: event.code });
1173
927
  if (['ArrowLeft', 'ArrowRight', 'ArrowUp', 'ArrowDown'].includes(event.code)) {
1174
- keyboard.emit('-keyup:arrow', { event, type: '-keyup:arrow', code: event.code, vector: getVector() });
928
+ xnew$1.emit('-keyup:arrow', { event, type: '-keyup:arrow', code: event.code, vector: getVector() });
1175
929
  }
1176
- }
930
+ });
931
+ window.addEventListener('keydown', keydown);
932
+ window.addEventListener('keyup', keyup);
933
+ keyboard.on('-finalize', () => {
934
+ window.removeEventListener('keydown', keydown);
935
+ window.removeEventListener('keyup', keyup);
936
+ });
1177
937
  function getVector() {
1178
938
  return {
1179
939
  x: (state['ArrowLeft'] ? -1 : 0) + (state['ArrowRight'] ? +1 : 0),
1180
940
  y: (state['ArrowUp'] ? -1 : 0) + (state['ArrowDown'] ? +1 : 0)
1181
941
  };
1182
942
  }
1183
- keyboard.on('-finalize', () => {
1184
- window.removeEventListener('keydown', keydown);
1185
- window.removeEventListener('keyup', keyup);
1186
- });
1187
943
  }
1188
944
  function PointerEvent(unit) {
1189
945
  const internal = xnew$1();
1190
- internal.on('pointerdown', (event) => unit.emit('-pointerdown', { event, position: getPosition(unit.element, event) }));
1191
- internal.on('pointermove', (event) => unit.emit('-pointermove', { event, position: getPosition(unit.element, event) }));
1192
- internal.on('pointerup', (event) => unit.emit('-pointerup', { event, position: getPosition(unit.element, event) }));
1193
- internal.on('wheel', (event) => unit.emit('-wheel', { event, delta: { x: event.wheelDeltaX, y: event.wheelDeltaY } }));
1194
- internal.on('click', (event) => unit.emit('-click', { event, position: getPosition(unit.element, event) }));
1195
- internal.on('pointerover', (event) => unit.emit('-pointerover', { event, position: getPosition(unit.element, event) }));
1196
- internal.on('pointerout', (event) => unit.emit('-pointerout', { event, position: getPosition(unit.element, event) }));
946
+ internal.on('pointerdown', (event) => xnew$1.emit('-pointerdown', { event, position: getPosition(unit.element, event) }));
947
+ internal.on('pointermove', (event) => xnew$1.emit('-pointermove', { event, position: getPosition(unit.element, event) }));
948
+ internal.on('pointerup', (event) => xnew$1.emit('-pointerup', { event, position: getPosition(unit.element, event) }));
949
+ internal.on('wheel', (event) => xnew$1.emit('-wheel', { event, delta: { x: event.wheelDeltaX, y: event.wheelDeltaY } }));
950
+ internal.on('click', (event) => xnew$1.emit('-click', { event, position: getPosition(unit.element, event) }));
951
+ internal.on('pointerover', (event) => xnew$1.emit('-pointerover', { event, position: getPosition(unit.element, event) }));
952
+ internal.on('pointerout', (event) => xnew$1.emit('-pointerout', { event, position: getPosition(unit.element, event) }));
953
+ const pointerdownoutside = xnew$1.scope((event) => {
954
+ if (unit.element.contains(event.target) === false) {
955
+ xnew$1.emit('-pointerdown:outside', { event, position: getPosition(unit.element, event) });
956
+ }
957
+ });
958
+ const pointerupoutside = xnew$1.scope((event) => {
959
+ if (unit.element.contains(event.target) === false) {
960
+ xnew$1.emit('-pointerup:outside', { event, position: getPosition(unit.element, event) });
961
+ }
962
+ });
963
+ const clickoutside = xnew$1.scope((event) => {
964
+ if (unit.element.contains(event.target) === false) {
965
+ xnew$1.emit('-click:outside', { event, position: getPosition(unit.element, event) });
966
+ }
967
+ });
1197
968
  document.addEventListener('pointerdown', pointerdownoutside);
1198
969
  document.addEventListener('pointerup', pointerupoutside);
1199
970
  document.addEventListener('click', clickoutside);
@@ -1202,77 +973,60 @@ function PointerEvent(unit) {
1202
973
  document.removeEventListener('pointerup', pointerupoutside);
1203
974
  document.removeEventListener('click', clickoutside);
1204
975
  });
1205
- function pointerdownoutside(event) {
1206
- if (unit.element.contains(event.target) === false) {
1207
- unit.emit('-pointerdown:outside', { event, position: getPosition(unit.element, event) });
1208
- }
1209
- }
1210
- function pointerupoutside(event) {
1211
- if (unit.element.contains(event.target) === false) {
1212
- unit.emit('-pointerup:outside', { event, position: getPosition(unit.element, event) });
1213
- }
1214
- }
1215
- function clickoutside(event) {
1216
- if (unit.element.contains(event.target) === false) {
1217
- unit.emit('-click:outside', { event, position: getPosition(unit.element, event) });
1218
- }
1219
- }
1220
976
  const drag = xnew$1(DragEvent);
1221
- drag.on('-dragstart', (...args) => unit.emit('-dragstart', ...args));
1222
- drag.on('-dragmove', (...args) => unit.emit('-dragmove', ...args));
1223
- drag.on('-dragend', (...args) => unit.emit('-dragend', ...args));
1224
- drag.on('-dragcancel', (...args) => unit.emit('-dragcancel', ...args));
977
+ drag.on('-dragstart', (...args) => xnew$1.emit('-dragstart', ...args));
978
+ drag.on('-dragmove', (...args) => xnew$1.emit('-dragmove', ...args));
979
+ drag.on('-dragend', (...args) => xnew$1.emit('-dragend', ...args));
980
+ drag.on('-dragcancel', (...args) => xnew$1.emit('-dragcancel', ...args));
1225
981
  const gesture = xnew$1(GestureEvent);
1226
- gesture.on('-gesturestart', (...args) => unit.emit('-gesturestart', ...args));
1227
- gesture.on('-gesturemove', (...args) => unit.emit('-gesturemove', ...args));
1228
- gesture.on('-gestureend', (...args) => unit.emit('-gestureend', ...args));
1229
- gesture.on('-gesturecancel', (...args) => unit.emit('-gesturecancel', ...args));
982
+ gesture.on('-gesturestart', (...args) => xnew$1.emit('-gesturestart', ...args));
983
+ gesture.on('-gesturemove', (...args) => xnew$1.emit('-gesturemove', ...args));
984
+ gesture.on('-gestureend', (...args) => xnew$1.emit('-gestureend', ...args));
985
+ gesture.on('-gesturecancel', (...args) => xnew$1.emit('-gesturecancel', ...args));
1230
986
  }
1231
987
  function DragEvent(unit) {
1232
- unit.on('pointerdown', pointerdown);
1233
- function pointerdown(event) {
988
+ const pointerdown = xnew$1.scope((event) => {
1234
989
  const id = event.pointerId;
1235
990
  const position = getPosition(unit.element, event);
1236
991
  let previous = position;
1237
- xnew$1((internal) => {
1238
- let connect = true;
1239
- window.addEventListener('pointermove', pointermove);
1240
- window.addEventListener('pointerup', pointerup);
1241
- window.addEventListener('pointercancel', pointercancel);
1242
- function pointermove(event) {
1243
- if (event.pointerId === id) {
1244
- const position = getPosition(unit.element, event);
1245
- const delta = { x: position.x - previous.x, y: position.y - previous.y };
1246
- unit.emit('-dragmove', { event, position, delta });
1247
- previous = position;
1248
- }
1249
- }
1250
- function pointerup(event) {
1251
- if (event.pointerId === id) {
1252
- const position = getPosition(unit.element, event);
1253
- unit.emit('-dragend', { event, position, });
1254
- remove();
1255
- }
992
+ let connect = true;
993
+ const pointermove = xnew$1.scope((event) => {
994
+ if (event.pointerId === id) {
995
+ const position = getPosition(unit.element, event);
996
+ const delta = { x: position.x - previous.x, y: position.y - previous.y };
997
+ xnew$1.emit('-dragmove', { event, position, delta });
998
+ previous = position;
1256
999
  }
1257
- function pointercancel(event) {
1258
- if (event.pointerId === id) {
1259
- const position = getPosition(unit.element, event);
1260
- unit.emit('-dragcancel', { event, position, });
1261
- remove();
1262
- }
1000
+ });
1001
+ const pointerup = xnew$1.scope((event) => {
1002
+ if (event.pointerId === id) {
1003
+ const position = getPosition(unit.element, event);
1004
+ xnew$1.emit('-dragend', { event, position, });
1005
+ remove();
1263
1006
  }
1264
- function remove() {
1265
- if (connect === true) {
1266
- window.removeEventListener('pointermove', pointermove);
1267
- window.removeEventListener('pointerup', pointerup);
1268
- window.removeEventListener('pointercancel', pointercancel);
1269
- connect = false;
1270
- }
1007
+ });
1008
+ const pointercancel = xnew$1.scope((event) => {
1009
+ if (event.pointerId === id) {
1010
+ const position = getPosition(unit.element, event);
1011
+ xnew$1.emit('-dragcancel', { event, position, });
1012
+ remove();
1271
1013
  }
1272
- internal.on('-finalize', remove);
1273
1014
  });
1274
- unit.emit('-dragstart', { event, position });
1275
- }
1015
+ window.addEventListener('pointermove', pointermove);
1016
+ window.addEventListener('pointerup', pointerup);
1017
+ window.addEventListener('pointercancel', pointercancel);
1018
+ function remove() {
1019
+ if (connect === true) {
1020
+ window.removeEventListener('pointermove', pointermove);
1021
+ window.removeEventListener('pointerup', pointerup);
1022
+ window.removeEventListener('pointercancel', pointercancel);
1023
+ connect = false;
1024
+ }
1025
+ }
1026
+ xnew$1((unit) => unit.on('-finalize', remove));
1027
+ xnew$1.emit('-dragstart', { event, position });
1028
+ });
1029
+ unit.on('pointerdown', pointerdown);
1276
1030
  }
1277
1031
  function GestureEvent(unit) {
1278
1032
  const drag = xnew$1(DragEvent);
@@ -1282,7 +1036,7 @@ function GestureEvent(unit) {
1282
1036
  map.set(event.pointerId, Object.assign({}, position));
1283
1037
  isActive = map.size === 2 ? true : false;
1284
1038
  if (isActive === true) {
1285
- unit.emit('-gesturestart', {});
1039
+ xnew$1.emit('-gesturestart', {});
1286
1040
  }
1287
1041
  });
1288
1042
  drag.on('-dragmove', ({ event, position, delta }) => {
@@ -1308,20 +1062,20 @@ function GestureEvent(unit) {
1308
1062
  // rotate = sign > 0.0 ? +angle : -angle;
1309
1063
  // }
1310
1064
  // }
1311
- unit.emit('-gesturemove', { event, position, delta, scale });
1065
+ xnew$1.emit('-gesturemove', { event, position, delta, scale });
1312
1066
  }
1313
1067
  map.set(event.pointerId, position);
1314
1068
  });
1315
1069
  drag.on('-dragend', ({ event }) => {
1316
1070
  if (isActive === true) {
1317
- unit.emit('-gestureend', {});
1071
+ xnew$1.emit('-gestureend', {});
1318
1072
  }
1319
1073
  isActive = false;
1320
1074
  map.delete(event.pointerId);
1321
1075
  });
1322
1076
  drag.on('-dragcancel', ({ event }) => {
1323
1077
  if (isActive === true) {
1324
- unit.emit('-gesturecancel', { event });
1078
+ xnew$1.emit('-gesturecancel', { event });
1325
1079
  }
1326
1080
  isActive = false;
1327
1081
  map.delete(event.pointerId);
@@ -1342,7 +1096,7 @@ function getPosition(element, event) {
1342
1096
  function Screen(screen, { width = 640, height = 480, fit = 'contain' } = {}) {
1343
1097
  const size = { width, height };
1344
1098
  const wrapper = xnew$1.nest('<div style="position: relative; width: 100%; height: 100%; overflow: hidden;">');
1345
- const absolute = xnew$1.nest('<div style="position: absolute; margin: auto; container-type: size;">');
1099
+ const absolute = xnew$1.nest('<div style="position: absolute; margin: auto; container-type: size; overflow: hidden;">');
1346
1100
  const canvas = xnew$1(`<canvas width="${width}" height="${height}" style="width: 100%; height: 100%; vertical-align: bottom; user-select: none; user-drag: none; pointer-events: auto;">`);
1347
1101
  xnew$1(wrapper, ResizeEvent).on('-resize', resize);
1348
1102
  resize();
@@ -1388,7 +1142,9 @@ function Screen(screen, { width = 640, height = 480, fit = 'contain' } = {}) {
1388
1142
 
1389
1143
  function ModalFrame(frame, { duration = 200, easing = 'ease' } = {}) {
1390
1144
  const internal = xnew$1((internal) => {
1391
- return {};
1145
+ return {
1146
+ emit(type, ...args) { xnew$1.emit(type, ...args); }
1147
+ };
1392
1148
  });
1393
1149
  xnew$1.context('xnew.modalframe', internal);
1394
1150
  xnew$1.nest('<div style="position: fixed; inset: 0; z-index: 1000;">');
@@ -1397,7 +1153,7 @@ function ModalFrame(frame, { duration = 200, easing = 'ease' } = {}) {
1397
1153
  return {
1398
1154
  close() {
1399
1155
  xnew$1.transition((x) => internal.emit('-transition', { rate: 1.0 - x }), duration, easing)
1400
- .next(() => frame.finalize());
1156
+ .timeout(() => frame.finalize());
1401
1157
  }
1402
1158
  };
1403
1159
  }
@@ -1421,7 +1177,10 @@ function TabFrame(frame, { select } = {}) {
1421
1177
  const internal = xnew$1((internal) => {
1422
1178
  const buttons = new Map();
1423
1179
  const contents = new Map();
1424
- return { frame, buttons, contents };
1180
+ return {
1181
+ frame, buttons, contents,
1182
+ emit(type, ...args) { xnew$1.emit(type, ...args); }
1183
+ };
1425
1184
  });
1426
1185
  xnew$1.context('xnew.tabframe', internal);
1427
1186
  xnew$1.timeout(() => internal.emit('-select', { key: select !== null && select !== void 0 ? select : [...internal.buttons.keys()][0] }));
@@ -1512,39 +1271,33 @@ function DragTarget(target, {} = {}) {
1512
1271
  //----------------------------------------------------------------------------------------------------
1513
1272
  // controller
1514
1273
  //----------------------------------------------------------------------------------------------------
1515
- function SVGTemplate$1(self, { fill = null, fillOpacity = 0.8, stroke = null, strokeOpacity = 0.8, strokeWidth = 2, strokeLinejoin = 'round' }) {
1274
+ function SVGTemplate(self, { stroke = 'currentColor', strokeOpacity = 0.8, strokeWidth = 2, strokeLinejoin = 'round', fill = null, fillOpacity = 0.8 }) {
1516
1275
  xnew$1.nest(`<svg
1517
1276
  viewBox="0 0 100 100"
1518
1277
  style="position: absolute; width: 100%; height: 100%; pointer-select: none;
1278
+ stroke: ${stroke}; stroke-opacity: ${strokeOpacity}; stroke-width: ${strokeWidth}; stroke-linejoin: ${strokeLinejoin};
1519
1279
  ${fill ? `fill: ${fill}; fill-opacity: ${fillOpacity};` : ''}
1520
- ${stroke ? `stroke: ${stroke}; stroke-opacity: ${strokeOpacity}; stroke-width: ${strokeWidth}; stroke-linejoin: ${strokeLinejoin};` : ''}
1521
1280
  ">`);
1522
1281
  }
1523
- function AnalogStick(self, { size, fill = '#FFF', fillOpacity = 0.8, stroke = '#000', strokeOpacity = 0.8, strokeWidth = 2, strokeLinejoin = 'round' } = {}) {
1524
- xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1525
- let internal;
1526
- let newsize;
1527
- if (size) {
1528
- newsize = size;
1529
- }
1530
- else {
1531
- newsize = Math.min(self.element.clientWidth, self.element.clientHeight);
1532
- xnew$1(self.element, ResizeEvent).on('-resize', () => {
1533
- newsize = Math.min(self.element.clientWidth, self.element.clientHeight);
1534
- internal === null || internal === void 0 ? void 0 : internal.reboot();
1535
- });
1536
- }
1537
- internal = xnew$1(() => {
1538
- xnew$1.nest(`<div style="position: absolute; width: ${newsize}px; height: ${newsize}px; margin: auto; inset: 0; cursor: pointer; pointer-select: none; pointer-events: auto; overflow: hidden;">`);
1539
- xnew$1((self) => {
1540
- xnew$1.extend(SVGTemplate$1, { fill, fillOpacity, stroke, strokeOpacity, strokeWidth, strokeLinejoin });
1282
+ function AnalogStick(unit, { stroke = 'currentColor', strokeOpacity = 0.8, strokeWidth = 2, strokeLinejoin = 'round', fill = '#FFF', fillOpacity = 0.8 } = {}) {
1283
+ const outer = xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1284
+ const internal = xnew$1((unit) => {
1285
+ let newsize = Math.min(outer.clientWidth, outer.clientHeight);
1286
+ const inner = xnew$1.nest(`<div style="position: absolute; width: ${newsize}px; height: ${newsize}px; margin: auto; inset: 0; cursor: pointer; pointer-select: none; pointer-events: auto; overflow: hidden;">`);
1287
+ xnew$1(outer, ResizeEvent).on('-resize', () => {
1288
+ newsize = Math.min(outer.clientWidth, outer.clientHeight);
1289
+ inner.style.width = `${newsize}px`;
1290
+ inner.style.height = `${newsize}px`;
1291
+ });
1292
+ xnew$1((unit) => {
1293
+ xnew$1.extend(SVGTemplate, { fill, fillOpacity, stroke, strokeOpacity, strokeWidth, strokeLinejoin });
1541
1294
  xnew$1('<polygon points="50 7 40 18 60 18">');
1542
1295
  xnew$1('<polygon points="50 93 40 83 60 83">');
1543
1296
  xnew$1('<polygon points=" 7 50 18 40 18 60">');
1544
1297
  xnew$1('<polygon points="93 50 83 40 83 60">');
1545
1298
  });
1546
- const target = xnew$1((self) => {
1547
- xnew$1.extend(SVGTemplate$1, { fill, fillOpacity, stroke, strokeOpacity, strokeWidth, strokeLinejoin });
1299
+ const target = xnew$1((unit) => {
1300
+ xnew$1.extend(SVGTemplate, { fill, fillOpacity, stroke, strokeOpacity, strokeWidth, strokeLinejoin });
1548
1301
  xnew$1('<circle cx="50" cy="50" r="23">');
1549
1302
  });
1550
1303
  const pointer = xnew$1(PointerEvent);
@@ -1553,21 +1306,21 @@ function AnalogStick(self, { size, fill = '#FFF', fillOpacity = 0.8, stroke = '#
1553
1306
  target.element.style.filter = 'brightness(90%)';
1554
1307
  target.element.style.left = vector.x * newsize / 4 + 'px';
1555
1308
  target.element.style.top = vector.y * newsize / 4 + 'px';
1556
- self.emit('-down', { vector });
1309
+ xnew$1.emit('-down', { vector });
1557
1310
  });
1558
1311
  pointer.on('-dragmove', ({ event, position }) => {
1559
1312
  const vector = getVector(position);
1560
1313
  target.element.style.filter = 'brightness(90%)';
1561
1314
  target.element.style.left = vector.x * newsize / 4 + 'px';
1562
1315
  target.element.style.top = vector.y * newsize / 4 + 'px';
1563
- self.emit('-move', { vector });
1316
+ xnew$1.emit('-move', { vector });
1564
1317
  });
1565
1318
  pointer.on('-dragend', ({ event }) => {
1566
1319
  const vector = { x: 0, y: 0 };
1567
1320
  target.element.style.filter = '';
1568
1321
  target.element.style.left = vector.x * newsize / 4 + 'px';
1569
1322
  target.element.style.top = vector.y * newsize / 4 + 'px';
1570
- self.emit('-up', { vector });
1323
+ xnew$1.emit('-up', { vector });
1571
1324
  });
1572
1325
  function getVector(position) {
1573
1326
  const x = position.x - newsize / 2;
@@ -1577,23 +1330,20 @@ function AnalogStick(self, { size, fill = '#FFF', fillOpacity = 0.8, stroke = '#
1577
1330
  return { x: Math.cos(a) * d, y: Math.sin(a) * d };
1578
1331
  }
1579
1332
  });
1333
+ internal.on('-down', (...args) => xnew$1.emit('-down', ...args));
1334
+ internal.on('-move', (...args) => xnew$1.emit('-move', ...args));
1335
+ internal.on('-up', (...args) => xnew$1.emit('-up', ...args));
1580
1336
  }
1581
- function DirectionalPad(self, { size, diagonal = true, fill = '#FFF', fillOpacity = 0.8, stroke = '#000', strokeOpacity = 0.8, strokeWidth = 2, strokeLinejoin = 'round' } = {}) {
1582
- xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1583
- let internal;
1584
- let newsize;
1585
- if (size) {
1586
- newsize = size;
1587
- }
1588
- else {
1589
- newsize = Math.min(self.element.clientWidth, self.element.clientHeight);
1590
- xnew$1(self.element, ResizeEvent).on('-resize', () => {
1591
- newsize = Math.min(self.element.clientWidth, self.element.clientHeight);
1592
- internal === null || internal === void 0 ? void 0 : internal.reboot();
1593
- });
1594
- }
1595
- internal = xnew$1(() => {
1596
- xnew$1.nest(`<div style="position: absolute; width: ${newsize}px; height: ${newsize}px; margin: auto; inset: 0; cursor: pointer; pointer-select: none; pointer-events: auto; overflow: hidden;">`);
1337
+ function DirectionalPad(unit, { diagonal = true, stroke = 'currentColor', strokeOpacity = 0.8, strokeWidth = 2, strokeLinejoin = 'round', fill = '#FFF', fillOpacity = 0.8 } = {}) {
1338
+ const outer = xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1339
+ const internal = xnew$1((unit) => {
1340
+ let newsize = Math.min(outer.clientWidth, outer.clientHeight);
1341
+ const inner = xnew$1.nest(`<div style="position: absolute; width: ${newsize}px; height: ${newsize}px; margin: auto; inset: 0; cursor: pointer; pointer-select: none; pointer-events: auto; overflow: hidden;">`);
1342
+ xnew$1(outer, ResizeEvent).on('-resize', () => {
1343
+ newsize = Math.min(outer.clientWidth, outer.clientHeight);
1344
+ inner.style.width = `${newsize}px`;
1345
+ inner.style.height = `${newsize}px`;
1346
+ });
1597
1347
  const polygons = [
1598
1348
  '<polygon points="50 50 35 35 35 5 37 3 63 3 65 5 65 35">',
1599
1349
  '<polygon points="50 50 35 65 35 95 37 97 63 97 65 95 65 65">',
@@ -1601,13 +1351,13 @@ function DirectionalPad(self, { size, diagonal = true, fill = '#FFF', fillOpacit
1601
1351
  '<polygon points="50 50 65 35 95 35 97 37 97 63 95 65 65 65">'
1602
1352
  ];
1603
1353
  const targets = polygons.map((polygon) => {
1604
- return xnew$1((self) => {
1605
- xnew$1.extend(SVGTemplate$1, { fill, fillOpacity });
1354
+ return xnew$1((unit) => {
1355
+ xnew$1.extend(SVGTemplate, { stroke: 'none', fill, fillOpacity });
1606
1356
  xnew$1(polygon);
1607
1357
  });
1608
1358
  });
1609
- xnew$1((self) => {
1610
- xnew$1.extend(SVGTemplate$1, { fill: 'none', stroke, strokeOpacity, strokeWidth, strokeLinejoin });
1359
+ xnew$1((unit) => {
1360
+ xnew$1.extend(SVGTemplate, { fill: 'none', stroke, strokeOpacity, strokeWidth, strokeLinejoin });
1611
1361
  xnew$1('<polyline points="35 35 35 5 37 3 63 3 65 5 65 35">');
1612
1362
  xnew$1('<polyline points="35 65 35 95 37 97 63 97 65 95 65 65">');
1613
1363
  xnew$1('<polyline points="35 35 5 35 3 37 3 63 5 65 35 65">');
@@ -1624,7 +1374,7 @@ function DirectionalPad(self, { size, diagonal = true, fill = '#FFF', fillOpacit
1624
1374
  targets[1].element.style.filter = (vector.y > 0) ? 'brightness(90%)' : '';
1625
1375
  targets[2].element.style.filter = (vector.x < 0) ? 'brightness(90%)' : '';
1626
1376
  targets[3].element.style.filter = (vector.x > 0) ? 'brightness(90%)' : '';
1627
- self.emit('-down', { vector });
1377
+ xnew$1.emit('-down', { vector });
1628
1378
  });
1629
1379
  pointer.on('-dragmove', ({ event, position }) => {
1630
1380
  const vector = getVector(position);
@@ -1632,7 +1382,7 @@ function DirectionalPad(self, { size, diagonal = true, fill = '#FFF', fillOpacit
1632
1382
  targets[1].element.style.filter = (vector.y > 0) ? 'brightness(90%)' : '';
1633
1383
  targets[2].element.style.filter = (vector.x < 0) ? 'brightness(90%)' : '';
1634
1384
  targets[3].element.style.filter = (vector.x > 0) ? 'brightness(90%)' : '';
1635
- self.emit('-move', { vector });
1385
+ xnew$1.emit('-move', { vector });
1636
1386
  });
1637
1387
  pointer.on('-dragend', ({ event }) => {
1638
1388
  const vector = { x: 0, y: 0 };
@@ -1640,7 +1390,7 @@ function DirectionalPad(self, { size, diagonal = true, fill = '#FFF', fillOpacit
1640
1390
  targets[1].element.style.filter = '';
1641
1391
  targets[2].element.style.filter = '';
1642
1392
  targets[3].element.style.filter = '';
1643
- self.emit('-up', { vector });
1393
+ xnew$1.emit('-up', { vector });
1644
1394
  });
1645
1395
  function getVector(position) {
1646
1396
  const x = position.x - newsize / 2;
@@ -1663,1376 +1413,2611 @@ function DirectionalPad(self, { size, diagonal = true, fill = '#FFF', fillOpacit
1663
1413
  return vector;
1664
1414
  }
1665
1415
  });
1416
+ internal.on('-down', (...args) => xnew$1.emit('-down', ...args));
1417
+ internal.on('-move', (...args) => xnew$1.emit('-move', ...args));
1418
+ internal.on('-up', (...args) => xnew$1.emit('-up', ...args));
1666
1419
  }
1667
1420
 
1668
- function SpeakerIcon(unit, { icon = 0 } = {}) {
1669
- xnew$1.nest(`<div style="position: relative; cursor: pointer; pointer-events: auto; width: ${icon}; height: ${icon};">`);
1670
- xnew$1.nest('<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">');
1671
- let path;
1672
- change(xnew$1.audio.volume > 0);
1673
- return { change };
1674
- function change(isOn) {
1675
- path === null || path === void 0 ? void 0 : path.finalize();
1676
- if (isOn) {
1677
- path = xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z" />');
1421
+ function TextStream(unit, { text = '', speed = 50, fade = 300 } = {}) {
1422
+ const chars = [];
1423
+ for (let i = 0; i < text.length; i++) {
1424
+ const unit = xnew$1('<span>');
1425
+ unit.element.textContent = text[i];
1426
+ unit.element.style.opacity = '0';
1427
+ unit.element.style.transition = `opacity ${fade}ms ease-in-out`;
1428
+ chars.push(unit);
1429
+ }
1430
+ let start = 0;
1431
+ unit.on('-start', () => {
1432
+ start = new Date().getTime();
1433
+ });
1434
+ let state = 0;
1435
+ unit.on('-update', () => {
1436
+ const index = Math.floor((new Date().getTime() - start) / speed);
1437
+ // 現在のインデックスまでの文字を表示(フェードイン)
1438
+ for (let i = 0; i < chars.length; i++) {
1439
+ if (i <= index) {
1440
+ chars[i].element.style.opacity = '1';
1441
+ }
1678
1442
  }
1679
- else {
1680
- path = xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M17.25 9.75 19.5 12m0 0 2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25m-10.5-6 4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z" />');
1443
+ if (state === 0 && index >= text.length) {
1444
+ action();
1681
1445
  }
1682
- }
1683
- }
1684
- function VolumeController(unit, { range = '10cqw', icon = 0 } = {}) {
1685
- xnew$1.nest(`<div class="flex items-center">`);
1686
- xnew$1.extend(PointerEvent);
1687
- unit.on('pointerdown', (event) => event.stopPropagation());
1688
- const slider = xnew$1(`<div style="width: ${range}; container-type: size; display: block;">`, () => {
1689
- xnew$1(`<div style="width: 100%; margin-top: -4cqw; height: 8cqw; border-radius: 4cqw; box-shadow: 0 0 2cqw currentColor;">`, () => {
1690
- xnew$1('<div style="background-color: currentColor;">');
1691
- });
1692
- });
1693
- // unit.on('-click:outside', () => slider.element.style.display = 'none');
1694
- const button = xnew$1(SpeakerIcon, { icon });
1695
- button.on('click', () => {
1696
- slider.element.style.display = slider.element.style.display !== 'none' ? 'none' : 'block';
1697
- console.log('click', slider.element.style.display);
1698
1446
  });
1699
- // slider.on('input', (event: any) => {
1700
- // button.change(event.target.value !== '0');
1701
- // xnew.audio.volume = parseFloat(event.target.value) / 100;
1702
- // });
1447
+ xnew$1.timeout(() => {
1448
+ xnew$1(document.body).on('click wheel', action);
1449
+ xnew$1(KeyboardEvent).on('-keydown', action);
1450
+ }, 100);
1451
+ function action() {
1452
+ if (state === 0) {
1453
+ state = 1;
1454
+ for (let i = 0; i < chars.length; i++) {
1455
+ chars[i].element.style.opacity = '1';
1456
+ }
1457
+ xnew$1.emit('-complete');
1458
+ }
1459
+ else if (state === 1) {
1460
+ state = 2;
1461
+ xnew$1.emit('-next');
1462
+ }
1463
+ }
1703
1464
  }
1704
1465
 
1705
- // heroicons
1706
- // https://heroicons.com/outline
1707
- // MIT License
1708
- function SVGTemplate(unit, { frame } = {}) {
1709
- xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1710
- if (frame) {
1711
- xnew$1((unit) => {
1712
- xnew$1.nest(`<div style="position: absolute; margin: auto; width: 100%; height: 100%;">`);
1713
- xnew$1.nest('<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.0" stroke="currentColor">');
1714
- if (frame === 'circle') {
1715
- xnew$1('<circle cx="12" cy="12" r="11">');
1716
- }
1466
+ const context = window.AudioContext ? new window.AudioContext() : (null);
1467
+ const master = context ? context.createGain() : (null);
1468
+ if (context) {
1469
+ master.gain.value = 0.1;
1470
+ master.connect(context.destination);
1471
+ }
1472
+ class AudioFile {
1473
+ constructor(path) {
1474
+ this.promise = fetch(path)
1475
+ .then((response) => response.arrayBuffer())
1476
+ .then((response) => context.decodeAudioData(response))
1477
+ .then((response) => { this.buffer = response; })
1478
+ .catch(() => {
1479
+ console.warn(`"${path}" could not be loaded.`);
1717
1480
  });
1481
+ this.amp = context.createGain();
1482
+ this.amp.gain.value = 1.0;
1483
+ this.amp.connect(master);
1484
+ this.fade = context.createGain();
1485
+ this.fade.gain.value = 1.0;
1486
+ this.fade.connect(this.amp);
1487
+ this.source = null;
1488
+ this.played = null;
1718
1489
  }
1719
- if (frame) {
1720
- xnew$1.nest(`<div style="position: absolute; inset: 0; margin: auto; width: 75%; height: 75%;">`);
1490
+ set volume(value) {
1491
+ this.amp.gain.value = value;
1492
+ }
1493
+ get volume() {
1494
+ return this.amp.gain.value;
1495
+ }
1496
+ play({ offset = 0, fade = 0, loop = false } = {}) {
1497
+ if (this.buffer !== undefined && this.played === null) {
1498
+ this.source = context.createBufferSource();
1499
+ this.source.buffer = this.buffer;
1500
+ this.source.loop = loop;
1501
+ this.source.connect(this.fade);
1502
+ this.played = context.currentTime;
1503
+ this.source.playbackRate.value = 1;
1504
+ this.source.start(context.currentTime, offset / 1000);
1505
+ // Apply fade-in effect if fade duration is specified
1506
+ if (fade > 0) {
1507
+ this.fade.gain.setValueAtTime(0, context.currentTime);
1508
+ this.fade.gain.linearRampToValueAtTime(1.0, context.currentTime + fade / 1000);
1509
+ }
1510
+ this.source.onended = () => {
1511
+ var _a;
1512
+ this.played = null;
1513
+ (_a = this.source) === null || _a === void 0 ? void 0 : _a.disconnect();
1514
+ this.source = null;
1515
+ };
1516
+ }
1517
+ }
1518
+ pause({ fade = 0 } = {}) {
1519
+ var _a, _b;
1520
+ if (this.buffer !== undefined && this.played !== null) {
1521
+ const elapsed = (context.currentTime - this.played) % this.buffer.duration * 1000;
1522
+ // Apply fade-out effect if fade duration is specified
1523
+ if (fade > 0) {
1524
+ this.fade.gain.setValueAtTime(1.0, context.currentTime);
1525
+ this.fade.gain.linearRampToValueAtTime(0, context.currentTime + fade / 1000);
1526
+ (_a = this.source) === null || _a === void 0 ? void 0 : _a.stop(context.currentTime + fade / 1000);
1527
+ }
1528
+ else {
1529
+ (_b = this.source) === null || _b === void 0 ? void 0 : _b.stop(context.currentTime);
1530
+ }
1531
+ this.played = null;
1532
+ return elapsed;
1533
+ }
1534
+ }
1535
+ clear() {
1536
+ var _a;
1537
+ this.amp.disconnect();
1538
+ this.fade.disconnect();
1539
+ (_a = this.source) === null || _a === void 0 ? void 0 : _a.disconnect();
1721
1540
  }
1722
- xnew$1.nest('<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">');
1723
1541
  }
1724
- const icons = {
1725
- AcademicCap(unit, props) {
1726
- xnew$1.extend(SVGTemplate, props);
1727
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.26 10.147a60 60 0 0 0-.491 6.347A48.6 48.6 0 0 1 12 20.904a48.6 48.6 0 0 1 8.232-4.41a61 61 0 0 0-.491-6.347m-15.482 0a51 51 0 0 0-2.658-.813A60 60 0 0 1 12 3.493a60 60 0 0 1 10.399 5.84q-1.345.372-2.658.814m-15.482 0A51 51 0 0 1 12 13.489a50.7 50.7 0 0 1 7.74-3.342M6.75 15a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m0 0v-3.675A55 55 0 0 1 12 8.443m-7.007 11.55A5.98 5.98 0 0 0 6.75 15.75v-1.5" />');
1728
- },
1729
- AdjustmentsHorizontal(unit, props) {
1730
- xnew$1.extend(SVGTemplate, props);
1731
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 6h9.75M10.5 6a1.5 1.5 0 1 1-3 0m3 0a1.5 1.5 0 1 0-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-9.75 0h9.75" />');
1732
- },
1733
- AdjustmentsVertical(unit, props) {
1734
- xnew$1.extend(SVGTemplate, props);
1735
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6 13.5V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m12-3V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m-6-9V3.75m0 3.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 9.75V10.5" />');
1736
- },
1737
- ArchiveBox(unit, props) {
1738
- xnew$1.extend(SVGTemplate, props);
1739
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5M10 11.25h4M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125" />');
1740
- },
1741
- ArchiveBoxArrowDown(unit, props) {
1742
- xnew$1.extend(SVGTemplate, props);
1743
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5m8.25 3v6.75m0 0l-3-3m3 3l3-3M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125" />');
1744
- },
1745
- ArchiveBoxXMark(unit, props) {
1746
- xnew$1.extend(SVGTemplate, props);
1747
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5m6 4.125l2.25 2.25m0 0l2.25 2.25M12 13.875l2.25-2.25M12 13.875l-2.25 2.25M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125" />');
1748
- },
1749
- ArrowDown(unit, props) {
1750
- xnew$1.extend(SVGTemplate, props);
1751
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 13.5L12 21m0 0l-7.5-7.5M12 21V3" />');
1752
- },
1753
- ArrowDownCircle(unit, props) {
1754
- xnew$1.extend(SVGTemplate, props);
1755
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m9 12.75l3 3m0 0l3-3m-3 3v-7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
1756
- },
1757
- ArrowDownLeft(unit, props) {
1758
- xnew$1.extend(SVGTemplate, props);
1759
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m19.5 4.5l-15 15m0 0h11.25m-11.25 0V8.25" />');
1760
- },
1761
- ArrowDownOnSquare(unit, props) {
1762
- xnew$1.extend(SVGTemplate, props);
1763
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15M9 12l3 3m0 0l3-3m-3 3V2.25" />');
1764
- },
1765
- ArrowDownOnSquareStack(unit, props) {
1766
- xnew$1.extend(SVGTemplate, props);
1767
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m-6 3.75l3 3m0 0l3-3m-3 3V1.5m6 9h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75" />');
1768
- },
1769
- ArrowDownRight(unit, props) {
1770
- xnew$1.extend(SVGTemplate, props);
1771
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 4.5l15 15m0 0V8.25m0 11.25H8.25" />');
1772
- },
1773
- ArrowDownTray(unit, props) {
1774
- xnew$1.extend(SVGTemplate, props);
1775
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3" />');
1776
- },
1777
- ArrowLeft(unit, props) {
1778
- xnew$1.extend(SVGTemplate, props);
1779
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18" />');
1780
- },
1781
- ArrowLeftCircle(unit, props) {
1782
- xnew$1.extend(SVGTemplate, props);
1783
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m11.25 9l-3 3m0 0l3 3m-3-3h7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
1784
- },
1785
- ArrowLeftEndOnRectangle(unit, props) {
1786
- xnew$1.extend(SVGTemplate, props);
1787
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15M12 9l-3 3m0 0l3 3m-3-3h12.75" />');
1788
- },
1789
- ArrowLeftOnRectangle(unit, props) {
1790
- xnew$1.extend(SVGTemplate, props);
1791
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15M12 9l-3 3m0 0l3 3m-3-3h12.75" />');
1792
- },
1793
- ArrowLeftStartOnRectangle(unit, props) {
1794
- xnew$1.extend(SVGTemplate, props);
1795
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 9V5.25A2.25 2.25 0 0 1 10.5 3h6a2.25 2.25 0 0 1 2.25 2.25v13.5A2.25 2.25 0 0 1 16.5 21h-6a2.25 2.25 0 0 1-2.25-2.25V15m-3 0l-3-3m0 0l3-3m-3 3H15" />');
1796
- },
1797
- ArrowLongDown(unit, props) {
1798
- xnew$1.extend(SVGTemplate, props);
1799
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 17.25L12 21m0 0l-3.75-3.75M12 21V3" />');
1800
- },
1801
- ArrowLongLeft(unit, props) {
1802
- xnew$1.extend(SVGTemplate, props);
1803
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 15.75L3 12m0 0l3.75-3.75M3 12h18" />');
1804
- },
1805
- ArrowLongRight(unit, props) {
1806
- xnew$1.extend(SVGTemplate, props);
1807
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M17.25 8.25L21 12m0 0l-3.75 3.75M21 12H3" />');
1808
- },
1809
- ArrowLongUp(unit, props) {
1810
- xnew$1.extend(SVGTemplate, props);
1811
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 6.75L12 3m0 0l3.75 3.75M12 3v18" />');
1812
- },
1813
- ArrowPath(unit, props) {
1814
- xnew$1.extend(SVGTemplate, props);
1815
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99" />');
1816
- },
1817
- ArrowPathRoundedSquare(unit, props) {
1818
- xnew$1.extend(SVGTemplate, props);
1819
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 12q0-1.848-.138-3.662a4.006 4.006 0 0 0-3.7-3.7a49 49 0 0 0-7.324 0a4.006 4.006 0 0 0-3.7 3.7q-.025.33-.046.662M19.5 12l3-3m-3 3l-3-3m-12 3q0 1.848.138 3.662a4.006 4.006 0 0 0 3.7 3.7a49 49 0 0 0 7.324 0a4.006 4.006 0 0 0 3.7-3.7q.025-.33.046-.662M4.5 12l3 3m-3-3l-3 3" />');
1820
- },
1821
- ArrowRight(unit, props) {
1822
- xnew$1.extend(SVGTemplate, props);
1823
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3" />');
1824
- },
1825
- ArrowRightCircle(unit, props) {
1826
- xnew$1.extend(SVGTemplate, props);
1827
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m12.75 15l3-3m0 0l-3-3m3 3h-7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
1828
- },
1829
- ArrowRightEndOnRectangle(unit, props) {
1830
- xnew$1.extend(SVGTemplate, props);
1831
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 9V5.25A2.25 2.25 0 0 1 10.5 3h6a2.25 2.25 0 0 1 2.25 2.25v13.5A2.25 2.25 0 0 1 16.5 21h-6a2.25 2.25 0 0 1-2.25-2.25V15M12 9l3 3m0 0l-3 3m3-3H2.25" />');
1832
- },
1833
- ArrowRightOnRectangle(unit, props) {
1834
- xnew$1.extend(SVGTemplate, props);
1835
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0l3-3m0 0l-3-3m3 3H9" />');
1836
- },
1837
- ArrowRightStartOnRectangle(unit, props) {
1838
- xnew$1.extend(SVGTemplate, props);
1839
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0l3-3m0 0l-3-3m3 3H9" />');
1840
- },
1841
- ArrowSmallDown(unit, props) {
1842
- xnew$1.extend(SVGTemplate, props);
1843
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m0 0l6.75-6.75M12 19.5l-6.75-6.75" />');
1844
- },
1845
- ArrowSmallLeft(unit, props) {
1846
- xnew$1.extend(SVGTemplate, props);
1847
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 12h-15m0 0l6.75 6.75M4.5 12l6.75-6.75" />');
1848
- },
1849
- ArrowSmallRight(unit, props) {
1850
- xnew$1.extend(SVGTemplate, props);
1851
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75" />');
1852
- },
1853
- ArrowSmallUp(unit, props) {
1854
- xnew$1.extend(SVGTemplate, props);
1855
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 19.5v-15m0 0l-6.75 6.75M12 4.5l6.75 6.75" />');
1856
- },
1857
- ArrowTopRightOnSquare(unit, props) {
1858
- xnew$1.extend(SVGTemplate, props);
1859
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" />');
1860
- },
1861
- ArrowTrendingDown(unit, props) {
1862
- xnew$1.extend(SVGTemplate, props);
1863
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 6L9 12.75l4.286-4.286a11.95 11.95 0 0 1 4.306 6.43l.776 2.898m0 0l3.182-5.511m-3.182 5.51l-5.511-3.181" />');
1864
- },
1865
- ArrowTrendingUp(unit, props) {
1866
- xnew$1.extend(SVGTemplate, props);
1867
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 18L9 11.25l4.306 4.306a11.95 11.95 0 0 1 5.814-5.518l2.74-1.22m0 0l-5.94-2.281m5.94 2.28l-2.28 5.942" />');
1868
- },
1869
- ArrowTurnDownLeft(unit, props) {
1870
- xnew$1.extend(SVGTemplate, props);
1871
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m7.49 12l-3.75 3.75m0 0l3.75 3.75m-3.75-3.75h16.5V4.499" />');
1872
- },
1873
- ArrowTurnDownRight(unit, props) {
1874
- xnew$1.extend(SVGTemplate, props);
1875
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m16.49 12l3.75 3.75m0 0l-3.75 3.75m3.75-3.75H3.74V4.499" />');
1876
- },
1877
- ArrowTurnLeftDown(unit, props) {
1878
- xnew$1.extend(SVGTemplate, props);
1879
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m11.99 16.5l-3.75 3.75m0 0L4.49 16.5m3.75 3.75V3.75h11.25" />');
1880
- },
1881
- ArrowTurnLeftUp(unit, props) {
1882
- xnew$1.extend(SVGTemplate, props);
1883
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M11.99 7.5L8.24 3.75m0 0L4.49 7.5m3.75-3.75v16.499h11.25" />');
1884
- },
1885
- ArrowTurnRightDown(unit, props) {
1886
- xnew$1.extend(SVGTemplate, props);
1887
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m11.99 16.5l3.75 3.75m0 0l3.75-3.75m-3.75 3.75V3.75H4.49" />');
1888
- },
1889
- ArrowTurnRightUp(unit, props) {
1890
- xnew$1.extend(SVGTemplate, props);
1891
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m11.99 7.5l3.75-3.75m0 0l3.75 3.75m-3.75-3.75v16.499H4.49" />');
1892
- },
1893
- ArrowTurnUpLeft(unit, props) {
1894
- xnew$1.extend(SVGTemplate, props);
1895
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.49 12L3.74 8.248m0 0l3.75-3.75m-3.75 3.75h16.5V19.5" />');
1896
- },
1897
- ArrowTurnUpRight(unit, props) {
1898
- xnew$1.extend(SVGTemplate, props);
1899
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m16.49 12l3.75-3.751m0 0l-3.75-3.75m3.75 3.75H3.74V19.5" />');
1900
- },
1901
- ArrowUp(unit, props) {
1902
- xnew$1.extend(SVGTemplate, props);
1903
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.5 10.5L12 3m0 0l7.5 7.5M12 3v18" />');
1904
- },
1905
- ArrowUpCircle(unit, props) {
1906
- xnew$1.extend(SVGTemplate, props);
1907
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m15 11.25l-3-3m0 0l-3 3m3-3v7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
1908
- },
1909
- ArrowUpLeft(unit, props) {
1910
- xnew$1.extend(SVGTemplate, props);
1911
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m19.5 19.5l-15-15m0 0v11.25m0-11.25h11.25" />');
1912
- },
1913
- ArrowUpOnSquare(unit, props) {
1914
- xnew$1.extend(SVGTemplate, props);
1915
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15m0-3l-3-3m0 0l-3 3m3-3V15" />');
1916
- },
1917
- ArrowUpOnSquareStack(unit, props) {
1918
- xnew$1.extend(SVGTemplate, props);
1919
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m0-3l-3-3m0 0l-3 3m3-3v11.25m6-2.25h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75" />');
1920
- },
1921
- ArrowUpRight(unit, props) {
1922
- xnew$1.extend(SVGTemplate, props);
1923
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 19.5l15-15m0 0H8.25m11.25 0v11.25" />');
1924
- },
1925
- ArrowUpTray(unit, props) {
1926
- xnew$1.extend(SVGTemplate, props);
1927
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0l4.5 4.5M12 3v13.5" />');
1928
- },
1929
- ArrowUturnDown(unit, props) {
1930
- xnew$1.extend(SVGTemplate, props);
1931
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m15 15l-6 6m0 0l-6-6m6 6V9a6 6 0 0 1 12 0v3" />');
1932
- },
1933
- ArrowUturnLeft(unit, props) {
1934
- xnew$1.extend(SVGTemplate, props);
1935
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 15L3 9m0 0l6-6M3 9h12a6 6 0 0 1 0 12h-3" />');
1936
- },
1937
- ArrowUturnRight(unit, props) {
1938
- xnew$1.extend(SVGTemplate, props);
1939
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m15 15l6-6m0 0l-6-6m6 6H9a6 6 0 0 0 0 12h3" />');
1940
- },
1941
- ArrowUturnUp(unit, props) {
1942
- xnew$1.extend(SVGTemplate, props);
1943
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m9 9l6-6m0 0l6 6m-6-6v12a6 6 0 0 1-12 0v-3" />');
1944
- },
1542
+ const keymap = {
1543
+ 'A0': 27.500, 'A#0': 29.135, 'B0': 30.868,
1544
+ 'C1': 32.703, 'C#1': 34.648, 'D1': 36.708, 'D#1': 38.891, 'E1': 41.203, 'F1': 43.654, 'F#1': 46.249, 'G1': 48.999, 'G#1': 51.913, 'A1': 55.000, 'A#1': 58.270, 'B1': 61.735,
1545
+ 'C2': 65.406, 'C#2': 69.296, 'D2': 73.416, 'D#2': 77.782, 'E2': 82.407, 'F2': 87.307, 'F#2': 92.499, 'G2': 97.999, 'G#2': 103.826, 'A2': 110.000, 'A#2': 116.541, 'B2': 123.471,
1546
+ 'C3': 130.813, 'C#3': 138.591, 'D3': 146.832, 'D#3': 155.563, 'E3': 164.814, 'F3': 174.614, 'F#3': 184.997, 'G3': 195.998, 'G#3': 207.652, 'A3': 220.000, 'A#3': 233.082, 'B3': 246.942,
1547
+ 'C4': 261.626, 'C#4': 277.183, 'D4': 293.665, 'D#4': 311.127, 'E4': 329.628, 'F4': 349.228, 'F#4': 369.994, 'G4': 391.995, 'G#4': 415.305, 'A4': 440.000, 'A#4': 466.164, 'B4': 493.883,
1548
+ 'C5': 523.251, 'C#5': 554.365, 'D5': 587.330, 'D#5': 622.254, 'E5': 659.255, 'F5': 698.456, 'F#5': 739.989, 'G5': 783.991, 'G#5': 830.609, 'A5': 880.000, 'A#5': 932.328, 'B5': 987.767,
1549
+ 'C6': 1046.502, 'C#6': 1108.731, 'D6': 1174.659, 'D#6': 1244.508, 'E6': 1318.510, 'F6': 1396.913, 'F#6': 1479.978, 'G6': 1567.982, 'G#6': 1661.219, 'A6': 1760.000, 'A#6': 1864.655, 'B6': 1975.533,
1550
+ 'C7': 2093.005, 'C#7': 2217.461, 'D7': 2349.318, 'D#7': 2489.016, 'E7': 2637.020, 'F7': 2793.826, 'F#7': 2959.955, 'G7': 3135.963, 'G#7': 3322.438, 'A7': 3520.000, 'A#7': 3729.310, 'B7': 3951.066,
1551
+ 'C8': 4186.009,
1552
+ };
1553
+ const notemap = {
1554
+ '1m': 4.000, '2n': 2.000, '4n': 1.000, '8n': 0.500, '16n': 0.250, '32n': 0.125,
1555
+ };
1556
+ class Synthesizer {
1557
+ constructor(props) { this.props = props; }
1558
+ press(frequency, duration, wait) {
1559
+ var _a;
1560
+ const props = this.props;
1561
+ const fv = typeof frequency === 'string' ? keymap[frequency] : frequency;
1562
+ const dv = typeof duration === 'string' ? (notemap[duration] * 60 / ((_a = props.bpm) !== null && _a !== void 0 ? _a : 120)) : (typeof duration === 'number' ? (duration / 1000) : 0);
1563
+ const start = context.currentTime + (wait !== null && wait !== void 0 ? wait : 0) / 1000;
1564
+ const nodes = {};
1565
+ nodes.oscillator = context.createOscillator();
1566
+ nodes.oscillator.type = props.oscillator.type;
1567
+ nodes.oscillator.frequency.value = fv;
1568
+ if (props.oscillator.LFO) {
1569
+ nodes.oscillatorLFO = context.createOscillator();
1570
+ nodes.oscillatorLFODepth = context.createGain();
1571
+ nodes.oscillatorLFODepth.gain.value = fv * (Math.pow(2.0, props.oscillator.LFO.amount / 12.0) - 1.0);
1572
+ nodes.oscillatorLFO.type = props.oscillator.LFO.type;
1573
+ nodes.oscillatorLFO.frequency.value = props.oscillator.LFO.rate;
1574
+ nodes.oscillatorLFO.start(start);
1575
+ nodes.oscillatorLFO.connect(nodes.oscillatorLFODepth);
1576
+ nodes.oscillatorLFODepth.connect(nodes.oscillator.frequency);
1577
+ }
1578
+ nodes.amp = context.createGain();
1579
+ nodes.amp.gain.value = 0.0;
1580
+ nodes.target = context.createGain();
1581
+ nodes.target.gain.value = 1.0;
1582
+ nodes.amp.connect(nodes.target);
1583
+ nodes.target.connect(master);
1584
+ if (props.filter) {
1585
+ nodes.filter = context.createBiquadFilter();
1586
+ nodes.filter.type = props.filter.type;
1587
+ nodes.filter.frequency.value = props.filter.cutoff;
1588
+ nodes.oscillator.connect(nodes.filter);
1589
+ nodes.filter.connect(nodes.amp);
1590
+ }
1591
+ else {
1592
+ nodes.oscillator.connect(nodes.amp);
1593
+ }
1594
+ if (props.reverb) {
1595
+ nodes.convolver = context.createConvolver();
1596
+ nodes.convolver.buffer = impulseResponse({ time: props.reverb.time });
1597
+ nodes.convolverDepth = context.createGain();
1598
+ nodes.convolverDepth.gain.value = 1.0;
1599
+ nodes.convolverDepth.gain.value *= props.reverb.mix;
1600
+ nodes.target.gain.value *= (1.0 - props.reverb.mix);
1601
+ nodes.amp.connect(nodes.convolver);
1602
+ nodes.convolver.connect(nodes.convolverDepth);
1603
+ nodes.convolverDepth.connect(master);
1604
+ }
1605
+ if (props.oscillator.envelope) {
1606
+ const amount = fv * (Math.pow(2.0, props.oscillator.envelope.amount / 12.0) - 1.0);
1607
+ startEnvelope(nodes.oscillator.frequency, fv, amount, props.oscillator.envelope.ADSR);
1608
+ }
1609
+ if (props.amp.envelope) {
1610
+ startEnvelope(nodes.amp.gain, 0.0, props.amp.envelope.amount, props.amp.envelope.ADSR);
1611
+ }
1612
+ nodes.oscillator.start(start);
1613
+ if (dv > 0) {
1614
+ release();
1615
+ }
1616
+ else {
1617
+ return { release };
1618
+ }
1619
+ function release() {
1620
+ let stop = null;
1621
+ const end = dv > 0 ? dv : (context.currentTime - start);
1622
+ if (props.amp.envelope) {
1623
+ const ADSR = props.amp.envelope.ADSR;
1624
+ const adsr = [ADSR[0] / 1000, ADSR[1] / 1000, ADSR[2], ADSR[3] / 1000];
1625
+ const rate = adsr[0] === 0.0 ? 1.0 : Math.min(end / (adsr[0] + 0.001), 1.0);
1626
+ stop = start + Math.max((adsr[0] + adsr[1]) * rate, end) + adsr[3];
1627
+ }
1628
+ else {
1629
+ stop = start + end;
1630
+ }
1631
+ if (nodes.oscillatorLFO) {
1632
+ nodes.oscillatorLFO.stop(stop);
1633
+ }
1634
+ if (props.oscillator.envelope) {
1635
+ const amount = fv * (Math.pow(2.0, props.oscillator.envelope.amount / 12.0) - 1.0);
1636
+ stopEnvelope(nodes.oscillator.frequency, fv, amount, props.oscillator.envelope.ADSR);
1637
+ }
1638
+ if (props.amp.envelope) {
1639
+ stopEnvelope(nodes.amp.gain, 0.0, props.amp.envelope.amount, props.amp.envelope.ADSR);
1640
+ }
1641
+ nodes.oscillator.stop(stop);
1642
+ setTimeout(() => {
1643
+ var _a, _b, _c, _d, _e;
1644
+ nodes.oscillator.disconnect();
1645
+ nodes.amp.disconnect();
1646
+ nodes.target.disconnect();
1647
+ (_a = nodes.oscillatorLFO) === null || _a === void 0 ? void 0 : _a.disconnect();
1648
+ (_b = nodes.oscillatorLFODepth) === null || _b === void 0 ? void 0 : _b.disconnect();
1649
+ (_c = nodes.filter) === null || _c === void 0 ? void 0 : _c.disconnect();
1650
+ (_d = nodes.convolver) === null || _d === void 0 ? void 0 : _d.disconnect();
1651
+ (_e = nodes.convolverDepth) === null || _e === void 0 ? void 0 : _e.disconnect();
1652
+ }, 2000);
1653
+ }
1654
+ function stopEnvelope(param, base, amount, ADSR) {
1655
+ const end = dv > 0 ? dv : (context.currentTime - start);
1656
+ const rate = ADSR[0] === 0.0 ? 1.0 : Math.min(end / (ADSR[0] / 1000), 1.0);
1657
+ if (rate < 1.0) {
1658
+ param.cancelScheduledValues(start);
1659
+ param.setValueAtTime(base, start);
1660
+ param.linearRampToValueAtTime(base + amount * rate, start + ADSR[0] / 1000 * rate);
1661
+ param.linearRampToValueAtTime(base + amount * rate * ADSR[2], start + (ADSR[0] + ADSR[1]) / 1000 * rate);
1662
+ }
1663
+ param.linearRampToValueAtTime(base + amount * rate * ADSR[2], start + Math.max((ADSR[0] + ADSR[1]) / 1000 * rate, dv));
1664
+ param.linearRampToValueAtTime(base, start + Math.max((ADSR[0] + ADSR[1]) / 1000 * rate, end) + ADSR[3] / 1000);
1665
+ }
1666
+ function startEnvelope(param, base, amount, ADSR) {
1667
+ param.value = base;
1668
+ param.setValueAtTime(base, start);
1669
+ param.linearRampToValueAtTime(base + amount, start + ADSR[0] / 1000);
1670
+ param.linearRampToValueAtTime(base + amount * ADSR[2], start + (ADSR[0] + ADSR[1]) / 1000);
1671
+ }
1672
+ function impulseResponse({ time, decay = 2.0 }) {
1673
+ const length = context.sampleRate * time / 1000;
1674
+ const impulse = context.createBuffer(2, length, context.sampleRate);
1675
+ const ch0 = impulse.getChannelData(0);
1676
+ const ch1 = impulse.getChannelData(1);
1677
+ for (let i = 0; i < length; i++) {
1678
+ ch0[i] = (2 * Math.random() - 1) * Math.pow(1 - i / length, decay);
1679
+ ch1[i] = (2 * Math.random() - 1) * Math.pow(1 - i / length, decay);
1680
+ }
1681
+ return impulse;
1682
+ }
1683
+ }
1684
+ }
1685
+
1686
+ // heroicons
1687
+ // https://heroicons.com/outline
1688
+ // MIT License
1689
+ function OutLineTemplate(unit, { frame, stroke = 'currentColor', strokeOpacity = 1.0, strokeWidth = 1.5, strokeLinejoin = 'round', strokeLinecap = 'round' } = {}) {
1690
+ if (frame) {
1691
+ xnew$1((unit) => {
1692
+ xnew$1.nest(`<div style="position: absolute; margin: auto; width: 100%; height: 100%;">`);
1693
+ xnew$1.nest('<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.0" stroke="currentColor">');
1694
+ if (frame === 'circle') {
1695
+ xnew$1('<circle cx="12" cy="12" r="11">');
1696
+ }
1697
+ else if (frame === 'square') {
1698
+ xnew$1('<rect x="2" y="2" width="20" height="20" rx="0">');
1699
+ }
1700
+ else if (frame === 'rounded-square') {
1701
+ xnew$1('<rect x="2" y="2" width="20" height="20" rx="6">');
1702
+ }
1703
+ });
1704
+ }
1705
+ if (frame) {
1706
+ xnew$1.nest(`<div style="position: absolute; inset: 0; margin: auto; width: 70%; height: 70%;">`);
1707
+ }
1708
+ xnew$1.nest(`<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
1709
+ style="stroke-width: ${strokeWidth}; stroke: ${stroke}; stroke-opacity: ${strokeOpacity}; stroke-linejoin: ${strokeLinejoin}; stroke-linecap: ${strokeLinecap};"
1710
+ >`);
1711
+ }
1712
+ const icons = {
1713
+ AcademicCap(unit, props) {
1714
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1715
+ xnew$1((unit) => {
1716
+ xnew$1.extend(OutLineTemplate, props);
1717
+ xnew$1('<path d="M4.26 10.147a60 60 0 0 0-.491 6.347A48.6 48.6 0 0 1 12 20.904a48.6 48.6 0 0 1 8.232-4.41a61 61 0 0 0-.491-6.347m-15.482 0a51 51 0 0 0-2.658-.813A60 60 0 0 1 12 3.493a60 60 0 0 1 10.399 5.84q-1.345.372-2.658.814m-15.482 0A51 51 0 0 1 12 13.489a50.7 50.7 0 0 1 7.74-3.342M6.75 15a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m0 0v-3.675A55 55 0 0 1 12 8.443m-7.007 11.55A5.98 5.98 0 0 0 6.75 15.75v-1.5" />');
1718
+ });
1719
+ },
1720
+ AdjustmentsHorizontal(unit, props) {
1721
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1722
+ xnew$1((unit) => {
1723
+ xnew$1.extend(OutLineTemplate, props);
1724
+ xnew$1('<path d="M10.5 6h9.75M10.5 6a1.5 1.5 0 1 1-3 0m3 0a1.5 1.5 0 1 0-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-9.75 0h9.75" />');
1725
+ });
1726
+ },
1727
+ AdjustmentsVertical(unit, props) {
1728
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1729
+ xnew$1((unit) => {
1730
+ xnew$1.extend(OutLineTemplate, props);
1731
+ xnew$1('<path d="M6 13.5V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m12-3V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m-6-9V3.75m0 3.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 9.75V10.5" />');
1732
+ });
1733
+ },
1734
+ ArchiveBox(unit, props) {
1735
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1736
+ xnew$1((unit) => {
1737
+ xnew$1.extend(OutLineTemplate, props);
1738
+ xnew$1('<path d="m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5M10 11.25h4M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125" />');
1739
+ });
1740
+ },
1741
+ ArchiveBoxArrowDown(unit, props) {
1742
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1743
+ xnew$1((unit) => {
1744
+ xnew$1.extend(OutLineTemplate, props);
1745
+ xnew$1('<path d="m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5m8.25 3v6.75m0 0l-3-3m3 3l3-3M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125" />');
1746
+ });
1747
+ },
1748
+ ArchiveBoxXMark(unit, props) {
1749
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1750
+ xnew$1((unit) => {
1751
+ xnew$1.extend(OutLineTemplate, props);
1752
+ xnew$1('<path d="m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5m6 4.125l2.25 2.25m0 0l2.25 2.25M12 13.875l2.25-2.25M12 13.875l-2.25 2.25M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125" />');
1753
+ });
1754
+ },
1755
+ ArrowDown(unit, props) {
1756
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1757
+ xnew$1((unit) => {
1758
+ xnew$1.extend(OutLineTemplate, props);
1759
+ xnew$1('<path d="M19.5 13.5L12 21m0 0l-7.5-7.5M12 21V3" />');
1760
+ });
1761
+ },
1762
+ ArrowDownCircle(unit, props) {
1763
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1764
+ xnew$1((unit) => {
1765
+ xnew$1.extend(OutLineTemplate, props);
1766
+ xnew$1('<path d="m9 12.75l3 3m0 0l3-3m-3 3v-7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
1767
+ });
1768
+ },
1769
+ ArrowDownLeft(unit, props) {
1770
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1771
+ xnew$1((unit) => {
1772
+ xnew$1.extend(OutLineTemplate, props);
1773
+ xnew$1('<path d="m19.5 4.5l-15 15m0 0h11.25m-11.25 0V8.25" />');
1774
+ });
1775
+ },
1776
+ ArrowDownOnSquare(unit, props) {
1777
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1778
+ xnew$1((unit) => {
1779
+ xnew$1.extend(OutLineTemplate, props);
1780
+ xnew$1('<path d="M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15M9 12l3 3m0 0l3-3m-3 3V2.25" />');
1781
+ });
1782
+ },
1783
+ ArrowDownOnSquareStack(unit, props) {
1784
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1785
+ xnew$1((unit) => {
1786
+ xnew$1.extend(OutLineTemplate, props);
1787
+ xnew$1('<path d="M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m-6 3.75l3 3m0 0l3-3m-3 3V1.5m6 9h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75" />');
1788
+ });
1789
+ },
1790
+ ArrowDownRight(unit, props) {
1791
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1792
+ xnew$1((unit) => {
1793
+ xnew$1.extend(OutLineTemplate, props);
1794
+ xnew$1('<path d="m4.5 4.5l15 15m0 0V8.25m0 11.25H8.25" />');
1795
+ });
1796
+ },
1797
+ ArrowDownTray(unit, props) {
1798
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1799
+ xnew$1((unit) => {
1800
+ xnew$1.extend(OutLineTemplate, props);
1801
+ xnew$1('<path d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3" />');
1802
+ });
1803
+ },
1804
+ ArrowLeft(unit, props) {
1805
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1806
+ xnew$1((unit) => {
1807
+ xnew$1.extend(OutLineTemplate, props);
1808
+ xnew$1('<path d="M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18" />');
1809
+ });
1810
+ },
1811
+ ArrowLeftCircle(unit, props) {
1812
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1813
+ xnew$1((unit) => {
1814
+ xnew$1.extend(OutLineTemplate, props);
1815
+ xnew$1('<path d="m11.25 9l-3 3m0 0l3 3m-3-3h7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
1816
+ });
1817
+ },
1818
+ ArrowLeftEndOnRectangle(unit, props) {
1819
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1820
+ xnew$1((unit) => {
1821
+ xnew$1.extend(OutLineTemplate, props);
1822
+ xnew$1('<path d="M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15M12 9l-3 3m0 0l3 3m-3-3h12.75" />');
1823
+ });
1824
+ },
1825
+ ArrowLeftOnRectangle(unit, props) {
1826
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1827
+ xnew$1((unit) => {
1828
+ xnew$1.extend(OutLineTemplate, props);
1829
+ xnew$1('<path d="M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15M12 9l-3 3m0 0l3 3m-3-3h12.75" />');
1830
+ });
1831
+ },
1832
+ ArrowLeftStartOnRectangle(unit, props) {
1833
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1834
+ xnew$1((unit) => {
1835
+ xnew$1.extend(OutLineTemplate, props);
1836
+ xnew$1('<path d="M8.25 9V5.25A2.25 2.25 0 0 1 10.5 3h6a2.25 2.25 0 0 1 2.25 2.25v13.5A2.25 2.25 0 0 1 16.5 21h-6a2.25 2.25 0 0 1-2.25-2.25V15m-3 0l-3-3m0 0l3-3m-3 3H15" />');
1837
+ });
1838
+ },
1839
+ ArrowLongDown(unit, props) {
1840
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1841
+ xnew$1((unit) => {
1842
+ xnew$1.extend(OutLineTemplate, props);
1843
+ xnew$1('<path d="M15.75 17.25L12 21m0 0l-3.75-3.75M12 21V3" />');
1844
+ });
1845
+ },
1846
+ ArrowLongLeft(unit, props) {
1847
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1848
+ xnew$1((unit) => {
1849
+ xnew$1.extend(OutLineTemplate, props);
1850
+ xnew$1('<path d="M6.75 15.75L3 12m0 0l3.75-3.75M3 12h18" />');
1851
+ });
1852
+ },
1853
+ ArrowLongRight(unit, props) {
1854
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1855
+ xnew$1((unit) => {
1856
+ xnew$1.extend(OutLineTemplate, props);
1857
+ xnew$1('<path d="M17.25 8.25L21 12m0 0l-3.75 3.75M21 12H3" />');
1858
+ });
1859
+ },
1860
+ ArrowLongUp(unit, props) {
1861
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1862
+ xnew$1((unit) => {
1863
+ xnew$1.extend(OutLineTemplate, props);
1864
+ xnew$1('<path d="M8.25 6.75L12 3m0 0l3.75 3.75M12 3v18" />');
1865
+ });
1866
+ },
1867
+ ArrowPath(unit, props) {
1868
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1869
+ xnew$1((unit) => {
1870
+ xnew$1.extend(OutLineTemplate, props);
1871
+ xnew$1('<path d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99" />');
1872
+ });
1873
+ },
1874
+ ArrowPathRoundedSquare(unit, props) {
1875
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1876
+ xnew$1((unit) => {
1877
+ xnew$1.extend(OutLineTemplate, props);
1878
+ xnew$1('<path d="M19.5 12q0-1.848-.138-3.662a4.006 4.006 0 0 0-3.7-3.7a49 49 0 0 0-7.324 0a4.006 4.006 0 0 0-3.7 3.7q-.025.33-.046.662M19.5 12l3-3m-3 3l-3-3m-12 3q0 1.848.138 3.662a4.006 4.006 0 0 0 3.7 3.7a49 49 0 0 0 7.324 0a4.006 4.006 0 0 0 3.7-3.7q.025-.33.046-.662M4.5 12l3 3m-3-3l-3 3" />');
1879
+ });
1880
+ },
1881
+ ArrowRight(unit, props) {
1882
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1883
+ xnew$1((unit) => {
1884
+ xnew$1.extend(OutLineTemplate, props);
1885
+ xnew$1('<path d="M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3" />');
1886
+ });
1887
+ },
1888
+ ArrowRightCircle(unit, props) {
1889
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1890
+ xnew$1((unit) => {
1891
+ xnew$1.extend(OutLineTemplate, props);
1892
+ xnew$1('<path d="m12.75 15l3-3m0 0l-3-3m3 3h-7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
1893
+ });
1894
+ },
1895
+ ArrowRightEndOnRectangle(unit, props) {
1896
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1897
+ xnew$1((unit) => {
1898
+ xnew$1.extend(OutLineTemplate, props);
1899
+ xnew$1('<path d="M8.25 9V5.25A2.25 2.25 0 0 1 10.5 3h6a2.25 2.25 0 0 1 2.25 2.25v13.5A2.25 2.25 0 0 1 16.5 21h-6a2.25 2.25 0 0 1-2.25-2.25V15M12 9l3 3m0 0l-3 3m3-3H2.25" />');
1900
+ });
1901
+ },
1902
+ ArrowRightOnRectangle(unit, props) {
1903
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1904
+ xnew$1((unit) => {
1905
+ xnew$1.extend(OutLineTemplate, props);
1906
+ xnew$1('<path d="M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0l3-3m0 0l-3-3m3 3H9" />');
1907
+ });
1908
+ },
1909
+ ArrowRightStartOnRectangle(unit, props) {
1910
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1911
+ xnew$1((unit) => {
1912
+ xnew$1.extend(OutLineTemplate, props);
1913
+ xnew$1('<path d="M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0l3-3m0 0l-3-3m3 3H9" />');
1914
+ });
1915
+ },
1916
+ ArrowSmallDown(unit, props) {
1917
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1918
+ xnew$1((unit) => {
1919
+ xnew$1.extend(OutLineTemplate, props);
1920
+ xnew$1('<path d="M12 4.5v15m0 0l6.75-6.75M12 19.5l-6.75-6.75" />');
1921
+ });
1922
+ },
1923
+ ArrowSmallLeft(unit, props) {
1924
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1925
+ xnew$1((unit) => {
1926
+ xnew$1.extend(OutLineTemplate, props);
1927
+ xnew$1('<path d="M19.5 12h-15m0 0l6.75 6.75M4.5 12l6.75-6.75" />');
1928
+ });
1929
+ },
1930
+ ArrowSmallRight(unit, props) {
1931
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1932
+ xnew$1((unit) => {
1933
+ xnew$1.extend(OutLineTemplate, props);
1934
+ xnew$1('<path d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75" />');
1935
+ });
1936
+ },
1937
+ ArrowSmallUp(unit, props) {
1938
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1939
+ xnew$1((unit) => {
1940
+ xnew$1.extend(OutLineTemplate, props);
1941
+ xnew$1('<path d="M12 19.5v-15m0 0l-6.75 6.75M12 4.5l6.75 6.75" />');
1942
+ });
1943
+ },
1944
+ ArrowTopRightOnSquare(unit, props) {
1945
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1946
+ xnew$1((unit) => {
1947
+ xnew$1.extend(OutLineTemplate, props);
1948
+ xnew$1('<path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" />');
1949
+ });
1950
+ },
1951
+ ArrowTrendingDown(unit, props) {
1952
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1953
+ xnew$1((unit) => {
1954
+ xnew$1.extend(OutLineTemplate, props);
1955
+ xnew$1('<path d="M2.25 6L9 12.75l4.286-4.286a11.95 11.95 0 0 1 4.306 6.43l.776 2.898m0 0l3.182-5.511m-3.182 5.51l-5.511-3.181" />');
1956
+ });
1957
+ },
1958
+ ArrowTrendingUp(unit, props) {
1959
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1960
+ xnew$1((unit) => {
1961
+ xnew$1.extend(OutLineTemplate, props);
1962
+ xnew$1('<path d="M2.25 18L9 11.25l4.306 4.306a11.95 11.95 0 0 1 5.814-5.518l2.74-1.22m0 0l-5.94-2.281m5.94 2.28l-2.28 5.942" />');
1963
+ });
1964
+ },
1965
+ ArrowTurnDownLeft(unit, props) {
1966
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1967
+ xnew$1((unit) => {
1968
+ xnew$1.extend(OutLineTemplate, props);
1969
+ xnew$1('<path d="m7.49 12l-3.75 3.75m0 0l3.75 3.75m-3.75-3.75h16.5V4.499" />');
1970
+ });
1971
+ },
1972
+ ArrowTurnDownRight(unit, props) {
1973
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1974
+ xnew$1((unit) => {
1975
+ xnew$1.extend(OutLineTemplate, props);
1976
+ xnew$1('<path d="m16.49 12l3.75 3.75m0 0l-3.75 3.75m3.75-3.75H3.74V4.499" />');
1977
+ });
1978
+ },
1979
+ ArrowTurnLeftDown(unit, props) {
1980
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1981
+ xnew$1((unit) => {
1982
+ xnew$1.extend(OutLineTemplate, props);
1983
+ xnew$1('<path d="m11.99 16.5l-3.75 3.75m0 0L4.49 16.5m3.75 3.75V3.75h11.25" />');
1984
+ });
1985
+ },
1986
+ ArrowTurnLeftUp(unit, props) {
1987
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1988
+ xnew$1((unit) => {
1989
+ xnew$1.extend(OutLineTemplate, props);
1990
+ xnew$1('<path d="M11.99 7.5L8.24 3.75m0 0L4.49 7.5m3.75-3.75v16.499h11.25" />');
1991
+ });
1992
+ },
1993
+ ArrowTurnRightDown(unit, props) {
1994
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
1995
+ xnew$1((unit) => {
1996
+ xnew$1.extend(OutLineTemplate, props);
1997
+ xnew$1('<path d="m11.99 16.5l3.75 3.75m0 0l3.75-3.75m-3.75 3.75V3.75H4.49" />');
1998
+ });
1999
+ },
2000
+ ArrowTurnRightUp(unit, props) {
2001
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2002
+ xnew$1((unit) => {
2003
+ xnew$1.extend(OutLineTemplate, props);
2004
+ xnew$1('<path d="m11.99 7.5l3.75-3.75m0 0l3.75 3.75m-3.75-3.75v16.499H4.49" />');
2005
+ });
2006
+ },
2007
+ ArrowTurnUpLeft(unit, props) {
2008
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2009
+ xnew$1((unit) => {
2010
+ xnew$1.extend(OutLineTemplate, props);
2011
+ xnew$1('<path d="M7.49 12L3.74 8.248m0 0l3.75-3.75m-3.75 3.75h16.5V19.5" />');
2012
+ });
2013
+ },
2014
+ ArrowTurnUpRight(unit, props) {
2015
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2016
+ xnew$1((unit) => {
2017
+ xnew$1.extend(OutLineTemplate, props);
2018
+ xnew$1('<path d="m16.49 12l3.75-3.751m0 0l-3.75-3.75m3.75 3.75H3.74V19.5" />');
2019
+ });
2020
+ },
2021
+ ArrowUp(unit, props) {
2022
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2023
+ xnew$1((unit) => {
2024
+ xnew$1.extend(OutLineTemplate, props);
2025
+ xnew$1('<path d="M4.5 10.5L12 3m0 0l7.5 7.5M12 3v18" />');
2026
+ });
2027
+ },
2028
+ ArrowUpCircle(unit, props) {
2029
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2030
+ xnew$1((unit) => {
2031
+ xnew$1.extend(OutLineTemplate, props);
2032
+ xnew$1('<path d="m15 11.25l-3-3m0 0l-3 3m3-3v7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2033
+ });
2034
+ },
2035
+ ArrowUpLeft(unit, props) {
2036
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2037
+ xnew$1((unit) => {
2038
+ xnew$1.extend(OutLineTemplate, props);
2039
+ xnew$1('<path d="m19.5 19.5l-15-15m0 0v11.25m0-11.25h11.25" />');
2040
+ });
2041
+ },
2042
+ ArrowUpOnSquare(unit, props) {
2043
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2044
+ xnew$1((unit) => {
2045
+ xnew$1.extend(OutLineTemplate, props);
2046
+ xnew$1('<path d="M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15m0-3l-3-3m0 0l-3 3m3-3V15" />');
2047
+ });
2048
+ },
2049
+ ArrowUpOnSquareStack(unit, props) {
2050
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2051
+ xnew$1((unit) => {
2052
+ xnew$1.extend(OutLineTemplate, props);
2053
+ xnew$1('<path d="M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m0-3l-3-3m0 0l-3 3m3-3v11.25m6-2.25h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75" />');
2054
+ });
2055
+ },
2056
+ ArrowUpRight(unit, props) {
2057
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2058
+ xnew$1((unit) => {
2059
+ xnew$1.extend(OutLineTemplate, props);
2060
+ xnew$1('<path d="m4.5 19.5l15-15m0 0H8.25m11.25 0v11.25" />');
2061
+ });
2062
+ },
2063
+ ArrowUpTray(unit, props) {
2064
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2065
+ xnew$1((unit) => {
2066
+ xnew$1.extend(OutLineTemplate, props);
2067
+ xnew$1('<path d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0l4.5 4.5M12 3v13.5" />');
2068
+ });
2069
+ },
2070
+ ArrowUturnDown(unit, props) {
2071
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2072
+ xnew$1((unit) => {
2073
+ xnew$1.extend(OutLineTemplate, props);
2074
+ xnew$1('<path d="m15 15l-6 6m0 0l-6-6m6 6V9a6 6 0 0 1 12 0v3" />');
2075
+ });
2076
+ },
2077
+ ArrowUturnLeft(unit, props) {
2078
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2079
+ xnew$1((unit) => {
2080
+ xnew$1.extend(OutLineTemplate, props);
2081
+ xnew$1('<path d="M9 15L3 9m0 0l6-6M3 9h12a6 6 0 0 1 0 12h-3" />');
2082
+ });
2083
+ },
2084
+ ArrowUturnRight(unit, props) {
2085
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2086
+ xnew$1((unit) => {
2087
+ xnew$1.extend(OutLineTemplate, props);
2088
+ xnew$1('<path d="m15 15l6-6m0 0l-6-6m6 6H9a6 6 0 0 0 0 12h3" />');
2089
+ });
2090
+ },
2091
+ ArrowUturnUp(unit, props) {
2092
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2093
+ xnew$1((unit) => {
2094
+ xnew$1.extend(OutLineTemplate, props);
2095
+ xnew$1('<path d="m9 9l6-6m0 0l6 6m-6-6v12a6 6 0 0 1-12 0v-3" />');
2096
+ });
2097
+ },
1945
2098
  ArrowsPointingIn(unit, props) {
1946
- xnew$1.extend(SVGTemplate, props);
1947
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 9V4.5M9 9H4.5M9 9L3.75 3.75M9 15v4.5M9 15H4.5M9 15l-5.25 5.25M15 9h4.5M15 9V4.5M15 9l5.25-5.25M15 15h4.5M15 15v4.5m0-4.5l5.25 5.25" />');
2099
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2100
+ xnew$1((unit) => {
2101
+ xnew$1.extend(OutLineTemplate, props);
2102
+ xnew$1('<path d="M9 9V4.5M9 9H4.5M9 9L3.75 3.75M9 15v4.5M9 15H4.5M9 15l-5.25 5.25M15 9h4.5M15 9V4.5M15 9l5.25-5.25M15 15h4.5M15 15v4.5m0-4.5l5.25 5.25" />');
2103
+ });
1948
2104
  },
1949
2105
  ArrowsPointingOut(unit, props) {
1950
- xnew$1.extend(SVGTemplate, props);
1951
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15" />');
2106
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2107
+ xnew$1((unit) => {
2108
+ xnew$1.extend(OutLineTemplate, props);
2109
+ xnew$1('<path d="M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15" />');
2110
+ });
1952
2111
  },
1953
2112
  ArrowsRightLeft(unit, props) {
1954
- xnew$1.extend(SVGTemplate, props);
1955
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 21L3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5" />');
2113
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2114
+ xnew$1((unit) => {
2115
+ xnew$1.extend(OutLineTemplate, props);
2116
+ xnew$1('<path d="M7.5 21L3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5" />');
2117
+ });
1956
2118
  },
1957
2119
  ArrowsUpDown(unit, props) {
1958
- xnew$1.extend(SVGTemplate, props);
1959
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 7.5L7.5 3m0 0L12 7.5M7.5 3v13.5m13.5 0L16.5 21m0 0L12 16.5m4.5 4.5V7.5" />');
2120
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2121
+ xnew$1((unit) => {
2122
+ xnew$1.extend(OutLineTemplate, props);
2123
+ xnew$1('<path d="M3 7.5L7.5 3m0 0L12 7.5M7.5 3v13.5m13.5 0L16.5 21m0 0L12 16.5m4.5 4.5V7.5" />');
2124
+ });
1960
2125
  },
1961
2126
  AtSymbol(unit, props) {
1962
- xnew$1.extend(SVGTemplate, props);
1963
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 12a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m0 0c0 1.657 1.007 3 2.25 3S21 13.657 21 12a9 9 0 1 0-2.636 6.364M16.5 12V8.25" />');
2127
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2128
+ xnew$1((unit) => {
2129
+ xnew$1.extend(OutLineTemplate, props);
2130
+ xnew$1('<path d="M16.5 12a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m0 0c0 1.657 1.007 3 2.25 3S21 13.657 21 12a9 9 0 1 0-2.636 6.364M16.5 12V8.25" />');
2131
+ });
1964
2132
  },
1965
2133
  Backspace(unit, props) {
1966
- xnew$1.extend(SVGTemplate, props);
1967
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 9.75L14.25 12m0 0l2.25 2.25M14.25 12l2.25-2.25M14.25 12L12 14.25m-2.58 4.92l-6.374-6.375a1.125 1.125 0 0 1 0-1.59L9.42 4.83c.21-.211.497-.33.795-.33H19.5a2.25 2.25 0 0 1 2.25 2.25v10.5a2.25 2.25 0 0 1-2.25 2.25h-9.284c-.298 0-.585-.119-.795-.33" />');
2134
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2135
+ xnew$1((unit) => {
2136
+ xnew$1.extend(OutLineTemplate, props);
2137
+ xnew$1('<path d="M12 9.75L14.25 12m0 0l2.25 2.25M14.25 12l2.25-2.25M14.25 12L12 14.25m-2.58 4.92l-6.374-6.375a1.125 1.125 0 0 1 0-1.59L9.42 4.83c.21-.211.497-.33.795-.33H19.5a2.25 2.25 0 0 1 2.25 2.25v10.5a2.25 2.25 0 0 1-2.25 2.25h-9.284c-.298 0-.585-.119-.795-.33" />');
2138
+ });
1968
2139
  },
1969
2140
  Backward(unit, props) {
1970
- xnew$1.extend(SVGTemplate, props);
1971
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 16.812c0 .863-.933 1.405-1.683.976l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061A1.125 1.125 0 0 1 21 8.689zm-9.75 0c0 .863-.933 1.405-1.683.976l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061a1.125 1.125 0 0 1 1.683.977z" />');
2141
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2142
+ xnew$1((unit) => {
2143
+ xnew$1.extend(OutLineTemplate, props);
2144
+ xnew$1('<path d="M21 16.812c0 .863-.933 1.405-1.683.976l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061A1.125 1.125 0 0 1 21 8.689zm-9.75 0c0 .863-.933 1.405-1.683.976l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061a1.125 1.125 0 0 1 1.683.977z" />');
2145
+ });
1972
2146
  },
1973
2147
  Banknotes(unit, props) {
1974
- xnew$1.extend(SVGTemplate, props);
1975
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 18.75a60 60 0 0 1 15.797 2.101c.727.198 1.453-.342 1.453-1.096V18.75M3.75 4.5v.75A.75.75 0 0 1 3 6h-.75m0 0v-.375c0-.621.504-1.125 1.125-1.125H20.25M2.25 6v9m18-10.5v.75c0 .414.336.75.75.75h.75m-1.5-1.5h.375c.621 0 1.125.504 1.125 1.125v9.75c0 .621-.504 1.125-1.125 1.125h-.375m1.5-1.5H21a.75.75 0 0 0-.75.75v.75m0 0H3.75m0 0h-.375a1.125 1.125 0 0 1-1.125-1.125V15m1.5 1.5v-.75A.75.75 0 0 0 3 15h-.75M15 10.5a3 3 0 1 1-6 0a3 3 0 0 1 6 0m3 0h.008v.008H18zm-12 0h.008v.008H6z" />');
2148
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2149
+ xnew$1((unit) => {
2150
+ xnew$1.extend(OutLineTemplate, props);
2151
+ xnew$1('<path d="M2.25 18.75a60 60 0 0 1 15.797 2.101c.727.198 1.453-.342 1.453-1.096V18.75M3.75 4.5v.75A.75.75 0 0 1 3 6h-.75m0 0v-.375c0-.621.504-1.125 1.125-1.125H20.25M2.25 6v9m18-10.5v.75c0 .414.336.75.75.75h.75m-1.5-1.5h.375c.621 0 1.125.504 1.125 1.125v9.75c0 .621-.504 1.125-1.125 1.125h-.375m1.5-1.5H21a.75.75 0 0 0-.75.75v.75m0 0H3.75m0 0h-.375a1.125 1.125 0 0 1-1.125-1.125V15m1.5 1.5v-.75A.75.75 0 0 0 3 15h-.75M15 10.5a3 3 0 1 1-6 0a3 3 0 0 1 6 0m3 0h.008v.008H18zm-12 0h.008v.008H6z" />');
2152
+ });
1976
2153
  },
1977
2154
  Bars2(unit, props) {
1978
- xnew$1.extend(SVGTemplate, props);
1979
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 9h16.5m-16.5 6.75h16.5" />');
2155
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2156
+ xnew$1((unit) => {
2157
+ xnew$1.extend(OutLineTemplate, props);
2158
+ xnew$1('<path d="M3.75 9h16.5m-16.5 6.75h16.5" />');
2159
+ });
1980
2160
  },
1981
2161
  Bars3(unit, props) {
1982
- xnew$1.extend(SVGTemplate, props);
1983
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />');
2162
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2163
+ xnew$1((unit) => {
2164
+ xnew$1.extend(OutLineTemplate, props);
2165
+ xnew$1('<path d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />');
2166
+ });
1984
2167
  },
1985
2168
  Bars3BottomLeft(unit, props) {
1986
- xnew$1.extend(SVGTemplate, props);
1987
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12" />');
2169
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2170
+ xnew$1((unit) => {
2171
+ xnew$1.extend(OutLineTemplate, props);
2172
+ xnew$1('<path d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12" />');
2173
+ });
1988
2174
  },
1989
2175
  Bars3BottomRight(unit, props) {
1990
- xnew$1.extend(SVGTemplate, props);
1991
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5M12 17.25h8.25" />');
2176
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2177
+ xnew$1((unit) => {
2178
+ xnew$1.extend(OutLineTemplate, props);
2179
+ xnew$1('<path d="M3.75 6.75h16.5M3.75 12h16.5M12 17.25h8.25" />');
2180
+ });
1992
2181
  },
1993
2182
  Bars3CenterLeft(unit, props) {
1994
- xnew$1.extend(SVGTemplate, props);
1995
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12H12m-8.25 5.25h16.5" />');
2183
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2184
+ xnew$1((unit) => {
2185
+ xnew$1.extend(OutLineTemplate, props);
2186
+ xnew$1('<path d="M3.75 6.75h16.5M3.75 12H12m-8.25 5.25h16.5" />');
2187
+ });
1996
2188
  },
1997
2189
  Bars4(unit, props) {
1998
- xnew$1.extend(SVGTemplate, props);
1999
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 5.25h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5" />');
2190
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2191
+ xnew$1((unit) => {
2192
+ xnew$1.extend(OutLineTemplate, props);
2193
+ xnew$1('<path d="M3.75 5.25h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5" />');
2194
+ });
2000
2195
  },
2001
2196
  BarsArrowDown(unit, props) {
2002
- xnew$1.extend(SVGTemplate, props);
2003
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 4.5h14.25M3 9h9.75M3 13.5h9.75m4.5-4.5v12m0 0l-3.75-3.75M17.25 21L21 17.25" />');
2197
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2198
+ xnew$1((unit) => {
2199
+ xnew$1.extend(OutLineTemplate, props);
2200
+ xnew$1('<path d="M3 4.5h14.25M3 9h9.75M3 13.5h9.75m4.5-4.5v12m0 0l-3.75-3.75M17.25 21L21 17.25" />');
2201
+ });
2004
2202
  },
2005
2203
  BarsArrowUp(unit, props) {
2006
- xnew$1.extend(SVGTemplate, props);
2007
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 4.5h14.25M3 9h9.75M3 13.5h5.25m5.25-.75L17.25 9m0 0L21 12.75M17.25 9v12" />');
2204
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2205
+ xnew$1((unit) => {
2206
+ xnew$1.extend(OutLineTemplate, props);
2207
+ xnew$1('<path d="M3 4.5h14.25M3 9h9.75M3 13.5h5.25m5.25-.75L17.25 9m0 0L21 12.75M17.25 9v12" />');
2208
+ });
2008
2209
  },
2009
2210
  Battery0(unit, props) {
2010
- xnew$1.extend(SVGTemplate, props);
2011
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18" />');
2211
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2212
+ xnew$1((unit) => {
2213
+ xnew$1.extend(OutLineTemplate, props);
2214
+ xnew$1('<path d="M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18" />');
2215
+ });
2012
2216
  },
2013
2217
  Battery100(unit, props) {
2014
- xnew$1.extend(SVGTemplate, props);
2015
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M4.5 10.5H18V15H4.5zM3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18" />');
2218
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2219
+ xnew$1((unit) => {
2220
+ xnew$1.extend(OutLineTemplate, props);
2221
+ xnew$1('<path d="M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M4.5 10.5H18V15H4.5zM3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18" />');
2222
+ });
2016
2223
  },
2017
2224
  Battery50(unit, props) {
2018
- xnew$1.extend(SVGTemplate, props);
2019
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M4.5 10.5h6.75V15H4.5zM3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18" />');
2225
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2226
+ xnew$1((unit) => {
2227
+ xnew$1.extend(OutLineTemplate, props);
2228
+ xnew$1('<path d="M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M4.5 10.5h6.75V15H4.5zM3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18" />');
2229
+ });
2020
2230
  },
2021
2231
  Beaker(unit, props) {
2022
- xnew$1.extend(SVGTemplate, props);
2023
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9.75 3.104v5.714a2.25 2.25 0 0 1-.659 1.591L5 14.5M9.75 3.104q-.376.034-.75.082m.75-.082a24.3 24.3 0 0 1 4.5 0m0 0v5.714c0 .597.237 1.17.659 1.591L19.8 15.3M14.25 3.104q.377.034.75.082M19.8 15.3l-1.57.393A9.07 9.07 0 0 1 12 15a9.07 9.07 0 0 0-6.23-.693L5 14.5m14.8.8l1.402 1.402c1.232 1.232.65 3.318-1.067 3.611A48.3 48.3 0 0 1 12 21a48 48 0 0 1-8.135-.687c-1.718-.293-2.3-2.379-1.067-3.61L5 14.5" />');
2232
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2233
+ xnew$1((unit) => {
2234
+ xnew$1.extend(OutLineTemplate, props);
2235
+ xnew$1('<path d="M9.75 3.104v5.714a2.25 2.25 0 0 1-.659 1.591L5 14.5M9.75 3.104q-.376.034-.75.082m.75-.082a24.3 24.3 0 0 1 4.5 0m0 0v5.714c0 .597.237 1.17.659 1.591L19.8 15.3M14.25 3.104q.377.034.75.082M19.8 15.3l-1.57.393A9.07 9.07 0 0 1 12 15a9.07 9.07 0 0 0-6.23-.693L5 14.5m14.8.8l1.402 1.402c1.232 1.232.65 3.318-1.067 3.611A48.3 48.3 0 0 1 12 21a48 48 0 0 1-8.135-.687c-1.718-.293-2.3-2.379-1.067-3.61L5 14.5" />');
2236
+ });
2024
2237
  },
2025
2238
  Bell(unit, props) {
2026
- xnew$1.extend(SVGTemplate, props);
2027
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.857 17.082a24 24 0 0 0 5.454-1.31A8.97 8.97 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.97 8.97 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.3 24.3 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0" />');
2239
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2240
+ xnew$1((unit) => {
2241
+ xnew$1.extend(OutLineTemplate, props);
2242
+ xnew$1('<path d="M14.857 17.082a24 24 0 0 0 5.454-1.31A8.97 8.97 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.97 8.97 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.3 24.3 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0" />');
2243
+ });
2028
2244
  },
2029
2245
  BellAlert(unit, props) {
2030
- xnew$1.extend(SVGTemplate, props);
2031
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.857 17.082a24 24 0 0 0 5.454-1.31A8.97 8.97 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.97 8.97 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.3 24.3 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M3.124 7.5A8.97 8.97 0 0 1 5.292 3m13.416 0a8.97 8.97 0 0 1 2.168 4.5" />');
2246
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2247
+ xnew$1((unit) => {
2248
+ xnew$1.extend(OutLineTemplate, props);
2249
+ xnew$1('<path d="M14.857 17.082a24 24 0 0 0 5.454-1.31A8.97 8.97 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.97 8.97 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.3 24.3 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M3.124 7.5A8.97 8.97 0 0 1 5.292 3m13.416 0a8.97 8.97 0 0 1 2.168 4.5" />');
2250
+ });
2032
2251
  },
2033
2252
  BellSlash(unit, props) {
2034
- xnew$1.extend(SVGTemplate, props);
2035
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9.143 17.082a24 24 0 0 0 3.844.148m-3.844-.148a24 24 0 0 1-5.455-1.31a8.96 8.96 0 0 0 2.3-5.542m3.155 6.852Q9.002 17.518 9 18a3 3 0 0 0 5.81 1.053m1.965-2.278L21 21m-4.225-4.225a24 24 0 0 0 3.536-1.003A8.97 8.97 0 0 1 18 9.75V9A6 6 0 0 0 6.53 6.53m10.245 10.245L6.53 6.53M3 3l3.53 3.53" />');
2253
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2254
+ xnew$1((unit) => {
2255
+ xnew$1.extend(OutLineTemplate, props);
2256
+ xnew$1('<path d="M9.143 17.082a24 24 0 0 0 3.844.148m-3.844-.148a24 24 0 0 1-5.455-1.31a8.96 8.96 0 0 0 2.3-5.542m3.155 6.852Q9.002 17.518 9 18a3 3 0 0 0 5.81 1.053m1.965-2.278L21 21m-4.225-4.225a24 24 0 0 0 3.536-1.003A8.97 8.97 0 0 1 18 9.75V9A6 6 0 0 0 6.53 6.53m10.245 10.245L6.53 6.53M3 3l3.53 3.53" />');
2257
+ });
2036
2258
  },
2037
2259
  BellSnooze(unit, props) {
2038
- xnew$1.extend(SVGTemplate, props);
2039
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.857 17.082a24 24 0 0 0 5.454-1.31A8.97 8.97 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.97 8.97 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.3 24.3 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M10.5 8.25h3l-3 4.5h3" />');
2260
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2261
+ xnew$1((unit) => {
2262
+ xnew$1.extend(OutLineTemplate, props);
2263
+ xnew$1('<path d="M14.857 17.082a24 24 0 0 0 5.454-1.31A8.97 8.97 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.97 8.97 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.3 24.3 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M10.5 8.25h3l-3 4.5h3" />');
2264
+ });
2040
2265
  },
2041
2266
  Bold(unit, props) {
2042
- xnew$1.extend(SVGTemplate, props);
2043
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 3.744h-.753v8.25h7.125a4.125 4.125 0 0 0 0-8.25zm0 0v.38m0 16.122h6.747a4.5 4.5 0 0 0 0-9.001h-7.5v9zm0 0v-.37m0-15.751h6a3.75 3.75 0 1 1 0 7.5h-6m0-7.5v7.5m0 0v8.25m0-8.25h6.375a4.125 4.125 0 0 1 0 8.25H6.75m.747-15.38h4.875a3.375 3.375 0 0 1 0 6.75H7.497zm0 7.5h5.25a3.75 3.75 0 0 1 0 7.5h-5.25z" />');
2267
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2268
+ xnew$1((unit) => {
2269
+ xnew$1.extend(OutLineTemplate, props);
2270
+ xnew$1('<path d="M6.75 3.744h-.753v8.25h7.125a4.125 4.125 0 0 0 0-8.25zm0 0v.38m0 16.122h6.747a4.5 4.5 0 0 0 0-9.001h-7.5v9zm0 0v-.37m0-15.751h6a3.75 3.75 0 1 1 0 7.5h-6m0-7.5v7.5m0 0v8.25m0-8.25h6.375a4.125 4.125 0 0 1 0 8.25H6.75m.747-15.38h4.875a3.375 3.375 0 0 1 0 6.75H7.497zm0 7.5h5.25a3.75 3.75 0 0 1 0 7.5h-5.25z" />');
2271
+ });
2044
2272
  },
2045
2273
  Bolt(unit, props) {
2046
- xnew$1.extend(SVGTemplate, props);
2047
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m3.75 13.5l10.5-11.25L12 10.5h8.25L9.75 21.75L12 13.5z" />');
2274
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2275
+ xnew$1((unit) => {
2276
+ xnew$1.extend(OutLineTemplate, props);
2277
+ xnew$1('<path d="m3.75 13.5l10.5-11.25L12 10.5h8.25L9.75 21.75L12 13.5z" />');
2278
+ });
2048
2279
  },
2049
2280
  BoltSlash(unit, props) {
2050
- xnew$1.extend(SVGTemplate, props);
2051
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M11.412 15.655L9.75 21.75l3.745-4.012M9.257 13.5H3.75l2.659-2.849m2.048-2.194L14.25 2.25L12 10.5h8.25l-4.707 5.043M8.457 8.457L3 3m5.457 5.457l7.086 7.086m0 0L21 21" />');
2281
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2282
+ xnew$1((unit) => {
2283
+ xnew$1.extend(OutLineTemplate, props);
2284
+ xnew$1('<path d="M11.412 15.655L9.75 21.75l3.745-4.012M9.257 13.5H3.75l2.659-2.849m2.048-2.194L14.25 2.25L12 10.5h8.25l-4.707 5.043M8.457 8.457L3 3m5.457 5.457l7.086 7.086m0 0L21 21" />');
2285
+ });
2052
2286
  },
2053
2287
  BookOpen(unit, props) {
2054
- xnew$1.extend(SVGTemplate, props);
2055
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 6.042A8.97 8.97 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A9 9 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.97 8.97 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A9 9 0 0 0 18 18a8.97 8.97 0 0 0-6 2.292m0-14.25v14.25" />');
2288
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2289
+ xnew$1((unit) => {
2290
+ xnew$1.extend(OutLineTemplate, props);
2291
+ xnew$1('<path d="M12 6.042A8.97 8.97 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A9 9 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.97 8.97 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A9 9 0 0 0 18 18a8.97 8.97 0 0 0-6 2.292m0-14.25v14.25" />');
2292
+ });
2056
2293
  },
2057
2294
  Bookmark(unit, props) {
2058
- xnew$1.extend(SVGTemplate, props);
2059
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25L4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.5 48.5 0 0 1 11.186 0" />');
2295
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2296
+ xnew$1((unit) => {
2297
+ xnew$1.extend(OutLineTemplate, props);
2298
+ xnew$1('<path d="M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25L4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.5 48.5 0 0 1 11.186 0" />');
2299
+ });
2060
2300
  },
2061
2301
  BookmarkSlash(unit, props) {
2062
- xnew$1.extend(SVGTemplate, props);
2063
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m3 3l1.664 1.664M21 21l-1.5-1.5m-5.485-1.242L12 17.25L4.5 21V8.742m.164-4.078a2.15 2.15 0 0 1 1.743-1.342a48.5 48.5 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185V19.5M4.664 4.664L19.5 19.5" />');
2302
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2303
+ xnew$1((unit) => {
2304
+ xnew$1.extend(OutLineTemplate, props);
2305
+ xnew$1('<path d="m3 3l1.664 1.664M21 21l-1.5-1.5m-5.485-1.242L12 17.25L4.5 21V8.742m.164-4.078a2.15 2.15 0 0 1 1.743-1.342a48.5 48.5 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185V19.5M4.664 4.664L19.5 19.5" />');
2306
+ });
2064
2307
  },
2065
2308
  BookmarkSquare(unit, props) {
2066
- xnew$1.extend(SVGTemplate, props);
2067
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 3.75V16.5L12 14.25L7.5 16.5V3.75m9 0H18A2.25 2.25 0 0 1 20.25 6v12A2.25 2.25 0 0 1 18 20.25H6A2.25 2.25 0 0 1 3.75 18V6A2.25 2.25 0 0 1 6 3.75h1.5m9 0h-9" />');
2309
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2310
+ xnew$1((unit) => {
2311
+ xnew$1.extend(OutLineTemplate, props);
2312
+ xnew$1('<path d="M16.5 3.75V16.5L12 14.25L7.5 16.5V3.75m9 0H18A2.25 2.25 0 0 1 20.25 6v12A2.25 2.25 0 0 1 18 20.25H6A2.25 2.25 0 0 1 3.75 18V6A2.25 2.25 0 0 1 6 3.75h1.5m9 0h-9" />');
2313
+ });
2068
2314
  },
2069
2315
  Briefcase(unit, props) {
2070
- xnew$1.extend(SVGTemplate, props);
2071
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18c-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 0 0 .75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48 48 0 0 0-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A24 24 0 0 1 12 15.75a24 24 0 0 1-7.577-1.22a2 2 0 0 1-.673-.38m0 0A2.18 2.18 0 0 1 3 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48 48 0 0 1 3.413-.387m7.5 0V5.25A2.25 2.25 0 0 0 13.5 3h-3a2.25 2.25 0 0 0-2.25 2.25v.894m7.5 0a49 49 0 0 0-7.5 0M12 12.75h.008v.008H12z" />');
2316
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2317
+ xnew$1((unit) => {
2318
+ xnew$1.extend(OutLineTemplate, props);
2319
+ xnew$1('<path d="M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18c-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 0 0 .75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48 48 0 0 0-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A24 24 0 0 1 12 15.75a24 24 0 0 1-7.577-1.22a2 2 0 0 1-.673-.38m0 0A2.18 2.18 0 0 1 3 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48 48 0 0 1 3.413-.387m7.5 0V5.25A2.25 2.25 0 0 0 13.5 3h-3a2.25 2.25 0 0 0-2.25 2.25v.894m7.5 0a49 49 0 0 0-7.5 0M12 12.75h.008v.008H12z" />');
2320
+ });
2072
2321
  },
2073
2322
  BugAnt(unit, props) {
2074
- xnew$1.extend(SVGTemplate, props);
2075
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 12.75q1.724 0 3.383.237c1.037.146 1.866.966 1.866 2.013c0 3.728-2.35 6.75-5.25 6.75S6.75 18.728 6.75 15c0-1.046.83-1.867 1.866-2.013A24 24 0 0 1 12 12.75m0 0c2.883 0 5.647.508 8.208 1.44a24 24 0 0 1-1.153 6.06M12 12.75c-2.883 0-5.647.508-8.208 1.44c.125 2.105.52 4.136 1.153 6.06M12 12.75a2.25 2.25 0 0 0 2.248-2.354M12 12.75a2.25 2.25 0 0 1-2.248-2.354M12 8.25q1.494-.001 2.922-.236c.403-.066.74-.358.795-.762a3.8 3.8 0 0 0-.399-2.25M12 8.25q-1.493-.001-2.922-.236c-.402-.066-.74-.358-.795-.762a3.73 3.73 0 0 1 .4-2.253M12 8.25a2.25 2.25 0 0 0-2.248 2.146M12 8.25a2.25 2.25 0 0 1 2.248 2.146M8.683 5a6 6 0 0 1-1.155-1.002c.07-.63.27-1.222.574-1.747M8.683 5a3.75 3.75 0 0 1 6.635 0m0 0c.427-.283.815-.62 1.155-.999a4.5 4.5 0 0 0-.575-1.752M4.921 6a24 24 0 0 0-.392 3.314a24 24 0 0 0 5.223 1.082M19.08 6q.308 1.622.392 3.314a24 24 0 0 1-5.223 1.082" />');
2323
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2324
+ xnew$1((unit) => {
2325
+ xnew$1.extend(OutLineTemplate, props);
2326
+ xnew$1('<path d="M12 12.75q1.724 0 3.383.237c1.037.146 1.866.966 1.866 2.013c0 3.728-2.35 6.75-5.25 6.75S6.75 18.728 6.75 15c0-1.046.83-1.867 1.866-2.013A24 24 0 0 1 12 12.75m0 0c2.883 0 5.647.508 8.208 1.44a24 24 0 0 1-1.153 6.06M12 12.75c-2.883 0-5.647.508-8.208 1.44c.125 2.105.52 4.136 1.153 6.06M12 12.75a2.25 2.25 0 0 0 2.248-2.354M12 12.75a2.25 2.25 0 0 1-2.248-2.354M12 8.25q1.494-.001 2.922-.236c.403-.066.74-.358.795-.762a3.8 3.8 0 0 0-.399-2.25M12 8.25q-1.493-.001-2.922-.236c-.402-.066-.74-.358-.795-.762a3.73 3.73 0 0 1 .4-2.253M12 8.25a2.25 2.25 0 0 0-2.248 2.146M12 8.25a2.25 2.25 0 0 1 2.248 2.146M8.683 5a6 6 0 0 1-1.155-1.002c.07-.63.27-1.222.574-1.747M8.683 5a3.75 3.75 0 0 1 6.635 0m0 0c.427-.283.815-.62 1.155-.999a4.5 4.5 0 0 0-.575-1.752M4.921 6a24 24 0 0 0-.392 3.314a24 24 0 0 0 5.223 1.082M19.08 6q.308 1.622.392 3.314a24 24 0 0 1-5.223 1.082" />');
2327
+ });
2076
2328
  },
2077
2329
  BuildingLibrary(unit, props) {
2078
- xnew$1.extend(SVGTemplate, props);
2079
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 21v-8.25M15.75 21v-8.25M8.25 21v-8.25M3 9l9-6l9 6m-1.5 12V10.333A48.4 48.4 0 0 0 12 9.75c-2.551 0-5.056.2-7.5.582V21M3 21h18M12 6.75h.008v.008H12z" />');
2330
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2331
+ xnew$1((unit) => {
2332
+ xnew$1.extend(OutLineTemplate, props);
2333
+ xnew$1('<path d="M12 21v-8.25M15.75 21v-8.25M8.25 21v-8.25M3 9l9-6l9 6m-1.5 12V10.333A48.4 48.4 0 0 0 12 9.75c-2.551 0-5.056.2-7.5.582V21M3 21h18M12 6.75h.008v.008H12z" />');
2334
+ });
2080
2335
  },
2081
2336
  BuildingOffice(unit, props) {
2082
- xnew$1.extend(SVGTemplate, props);
2083
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21" />');
2337
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2338
+ xnew$1((unit) => {
2339
+ xnew$1.extend(OutLineTemplate, props);
2340
+ xnew$1('<path d="M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21" />');
2341
+ });
2084
2342
  },
2085
2343
  BuildingOffice2(unit, props) {
2086
- xnew$1.extend(SVGTemplate, props);
2087
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 21h19.5m-18-18v18m10.5-18v18m6-13.5V21M6.75 6.75h.75m-.75 3h.75m-.75 3h.75m3-6h.75m-.75 3h.75m-.75 3h.75M6.75 21v-3.375c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21M3 3h12m-.75 4.5H21m-3.75 3.75h.008v.008h-.008zm0 3h.008v.008h-.008zm0 3h.008v.008h-.008z" />');
2344
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2345
+ xnew$1((unit) => {
2346
+ xnew$1.extend(OutLineTemplate, props);
2347
+ xnew$1('<path d="M2.25 21h19.5m-18-18v18m10.5-18v18m6-13.5V21M6.75 6.75h.75m-.75 3h.75m-.75 3h.75m3-6h.75m-.75 3h.75m-.75 3h.75M6.75 21v-3.375c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21M3 3h12m-.75 4.5H21m-3.75 3.75h.008v.008h-.008zm0 3h.008v.008h-.008zm0 3h.008v.008h-.008z" />');
2348
+ });
2088
2349
  },
2089
2350
  BuildingStorefront(unit, props) {
2090
- xnew$1.extend(SVGTemplate, props);
2091
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 21v-7.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75V21m-4.5 0H2.36m11.14 0H18m0 0h3.64m-1.39 0V9.349M3.75 21V9.349m0 0a3 3 0 0 0 3.75-.615A3 3 0 0 0 9.75 9.75c.896 0 1.7-.393 2.25-1.016a3 3 0 0 0 2.25 1.016c.896 0 1.7-.393 2.25-1.015q.062.07.128.136a3 3 0 0 0 3.622.478m-16.5 0a3.004 3.004 0 0 1-.621-4.72l1.189-1.19A1.5 1.5 0 0 1 5.378 3h13.243a1.5 1.5 0 0 1 1.06.44l1.19 1.189a3 3 0 0 1-.621 4.72M6.75 18h3.75a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75H6.75a.75.75 0 0 0-.75.75v3.75c0 .414.336.75.75.75" />');
2351
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2352
+ xnew$1((unit) => {
2353
+ xnew$1.extend(OutLineTemplate, props);
2354
+ xnew$1('<path d="M13.5 21v-7.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75V21m-4.5 0H2.36m11.14 0H18m0 0h3.64m-1.39 0V9.349M3.75 21V9.349m0 0a3 3 0 0 0 3.75-.615A3 3 0 0 0 9.75 9.75c.896 0 1.7-.393 2.25-1.016a3 3 0 0 0 2.25 1.016c.896 0 1.7-.393 2.25-1.015q.062.07.128.136a3 3 0 0 0 3.622.478m-16.5 0a3.004 3.004 0 0 1-.621-4.72l1.189-1.19A1.5 1.5 0 0 1 5.378 3h13.243a1.5 1.5 0 0 1 1.06.44l1.19 1.189a3 3 0 0 1-.621 4.72M6.75 18h3.75a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75H6.75a.75.75 0 0 0-.75.75v3.75c0 .414.336.75.75.75" />');
2355
+ });
2092
2356
  },
2093
2357
  Cake(unit, props) {
2094
- xnew$1.extend(SVGTemplate, props);
2095
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 8.25v-1.5m0 1.5q-2.033 0-4.024.166C6.845 8.51 6 9.473 6 10.608v2.513m6-4.871q2.033 0 4.024.166C17.155 8.51 18 9.473 18 10.608v2.513M15 8.25v-1.5m-6 1.5v-1.5m12 9.75l-1.5.75a3.35 3.35 0 0 1-3 0a3.35 3.35 0 0 0-3 0a3.35 3.35 0 0 1-3 0a3.35 3.35 0 0 0-3 0a3.35 3.35 0 0 1-3 0L3 16.5m15-3.379a49 49 0 0 0-6-.371q-3.05.002-6 .371m12 0q.585.073 1.163.16c1.07.16 1.837 1.094 1.837 2.175v5.169c0 .621-.504 1.125-1.125 1.125H4.125A1.125 1.125 0 0 1 3 20.625v-5.17c0-1.08.768-2.014 1.837-2.174A48 48 0 0 1 6 13.12m6.265-10.01a.375.375 0 1 1-.53 0L12 2.845zm-3 0a.375.375 0 1 1-.53 0L9 2.845zm6 0a.375.375 0 1 1-.53 0L15 2.845z" />');
2358
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2359
+ xnew$1((unit) => {
2360
+ xnew$1.extend(OutLineTemplate, props);
2361
+ xnew$1('<path d="M12 8.25v-1.5m0 1.5q-2.033 0-4.024.166C6.845 8.51 6 9.473 6 10.608v2.513m6-4.871q2.033 0 4.024.166C17.155 8.51 18 9.473 18 10.608v2.513M15 8.25v-1.5m-6 1.5v-1.5m12 9.75l-1.5.75a3.35 3.35 0 0 1-3 0a3.35 3.35 0 0 0-3 0a3.35 3.35 0 0 1-3 0a3.35 3.35 0 0 0-3 0a3.35 3.35 0 0 1-3 0L3 16.5m15-3.379a49 49 0 0 0-6-.371q-3.05.002-6 .371m12 0q.585.073 1.163.16c1.07.16 1.837 1.094 1.837 2.175v5.169c0 .621-.504 1.125-1.125 1.125H4.125A1.125 1.125 0 0 1 3 20.625v-5.17c0-1.08.768-2.014 1.837-2.174A48 48 0 0 1 6 13.12m6.265-10.01a.375.375 0 1 1-.53 0L12 2.845zm-3 0a.375.375 0 1 1-.53 0L9 2.845zm6 0a.375.375 0 1 1-.53 0L15 2.845z" />');
2362
+ });
2096
2363
  },
2097
2364
  Calculator(unit, props) {
2098
- xnew$1.extend(SVGTemplate, props);
2099
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 15.75V18m-7.5-6.75h.008v.008H8.25zm0 2.25h.008v.008H8.25zm0 2.25h.008v.008H8.25zm0 2.25h.008v.008H8.25zm2.498-6.75h.007v.008h-.007zm0 2.25h.007v.008h-.007zm0 2.25h.007v.008h-.007zm0 2.25h.007v.008h-.007zm2.504-6.75h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm2.498-6.75h.008v.008h-.008zm0 2.25h.008v.008h-.008zM8.25 6h7.5v2.25h-7.5zM12 2.25c-1.892 0-3.758.11-5.593.322C5.307 2.7 4.5 3.65 4.5 4.757V19.5a2.25 2.25 0 0 0 2.25 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25V4.757c0-1.108-.806-2.057-1.907-2.185A49 49 0 0 0 12 2.25" />');
2365
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2366
+ xnew$1((unit) => {
2367
+ xnew$1.extend(OutLineTemplate, props);
2368
+ xnew$1('<path d="M15.75 15.75V18m-7.5-6.75h.008v.008H8.25zm0 2.25h.008v.008H8.25zm0 2.25h.008v.008H8.25zm0 2.25h.008v.008H8.25zm2.498-6.75h.007v.008h-.007zm0 2.25h.007v.008h-.007zm0 2.25h.007v.008h-.007zm0 2.25h.007v.008h-.007zm2.504-6.75h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm2.498-6.75h.008v.008h-.008zm0 2.25h.008v.008h-.008zM8.25 6h7.5v2.25h-7.5zM12 2.25c-1.892 0-3.758.11-5.593.322C5.307 2.7 4.5 3.65 4.5 4.757V19.5a2.25 2.25 0 0 0 2.25 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25V4.757c0-1.108-.806-2.057-1.907-2.185A49 49 0 0 0 12 2.25" />');
2369
+ });
2100
2370
  },
2101
2371
  Calendar(unit, props) {
2102
- xnew$1.extend(SVGTemplate, props);
2103
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5" />');
2372
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2373
+ xnew$1((unit) => {
2374
+ xnew$1.extend(OutLineTemplate, props);
2375
+ xnew$1('<path d="M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5" />');
2376
+ });
2104
2377
  },
2105
2378
  CalendarDateRange(unit, props) {
2106
- xnew$1.extend(SVGTemplate, props);
2107
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 2.995v2.25m10.5-2.252v2.25m-14.252 13.5V7.493a2.25 2.25 0 0 1 2.25-2.251h13.5a2.25 2.25 0 0 1 2.25 2.25v11.251m-18 0a2.25 2.25 0 0 0 2.25 2.25h13.5a2.25 2.25 0 0 0 2.25-2.25m-18 0v-7.5a2.25 2.25 0 0 1 2.25-2.25h13.5a2.25 2.25 0 0 1 2.25 2.25v7.5m-6.75-6h2.25m-9 2.25h4.5m.002-2.25h.005v.006H12zm-.001 4.5h.006v.006h-.006zm-2.25.001h.005v.006H9.75zm-2.25 0h.005v.005h-.006zm6.75-2.247h.005v.005h-.005zm0 2.247h.006v.006h-.006zm2.25-2.248h.006V15H16.5z" />');
2379
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2380
+ xnew$1((unit) => {
2381
+ xnew$1.extend(OutLineTemplate, props);
2382
+ xnew$1('<path d="M6.75 2.995v2.25m10.5-2.252v2.25m-14.252 13.5V7.493a2.25 2.25 0 0 1 2.25-2.251h13.5a2.25 2.25 0 0 1 2.25 2.25v11.251m-18 0a2.25 2.25 0 0 0 2.25 2.25h13.5a2.25 2.25 0 0 0 2.25-2.25m-18 0v-7.5a2.25 2.25 0 0 1 2.25-2.25h13.5a2.25 2.25 0 0 1 2.25 2.25v7.5m-6.75-6h2.25m-9 2.25h4.5m.002-2.25h.005v.006H12zm-.001 4.5h.006v.006h-.006zm-2.25.001h.005v.006H9.75zm-2.25 0h.005v.005h-.006zm6.75-2.247h.005v.005h-.005zm0 2.247h.006v.006h-.006zm2.25-2.248h.006V15H16.5z" />');
2383
+ });
2108
2384
  },
2109
2385
  CalendarDays(unit, props) {
2110
- xnew$1.extend(SVGTemplate, props);
2111
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5m-9-6h.008v.008H12zM12 15h.008v.008H12zm0 2.25h.008v.008H12zM9.75 15h.008v.008H9.75zm0 2.25h.008v.008H9.75zM7.5 15h.008v.008H7.5zm0 2.25h.008v.008H7.5zm6.75-4.5h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm2.25-4.5h.008v.008H16.5zm0 2.25h.008v.008H16.5z" />');
2386
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2387
+ xnew$1((unit) => {
2388
+ xnew$1.extend(OutLineTemplate, props);
2389
+ xnew$1('<path d="M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5m-9-6h.008v.008H12zM12 15h.008v.008H12zm0 2.25h.008v.008H12zM9.75 15h.008v.008H9.75zm0 2.25h.008v.008H9.75zM7.5 15h.008v.008H7.5zm0 2.25h.008v.008H7.5zm6.75-4.5h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm2.25-4.5h.008v.008H16.5zm0 2.25h.008v.008H16.5z" />');
2390
+ });
2112
2391
  },
2113
2392
  Camera(unit, props) {
2114
- xnew$1.extend(SVGTemplate, props);
2115
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.827 6.175A2.31 2.31 0 0 1 5.186 7.23q-.57.08-1.134.175C2.999 7.58 2.25 8.507 2.25 9.574V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9.574c0-1.067-.75-1.994-1.802-2.169a48 48 0 0 0-1.134-.175a2.31 2.31 0 0 1-1.64-1.055l-.822-1.316a2.19 2.19 0 0 0-1.736-1.039a49 49 0 0 0-5.232 0a2.19 2.19 0 0 0-1.736 1.039z" />');
2116
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 12.75a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m2.25-2.25h.008v.008h-.008z" />');
2393
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2394
+ xnew$1((unit) => {
2395
+ xnew$1.extend(OutLineTemplate, props);
2396
+ xnew$1('<path d="M6.827 6.175A2.31 2.31 0 0 1 5.186 7.23q-.57.08-1.134.175C2.999 7.58 2.25 8.507 2.25 9.574V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9.574c0-1.067-.75-1.994-1.802-2.169a48 48 0 0 0-1.134-.175a2.31 2.31 0 0 1-1.64-1.055l-.822-1.316a2.19 2.19 0 0 0-1.736-1.039a49 49 0 0 0-5.232 0a2.19 2.19 0 0 0-1.736 1.039z" />');
2397
+ xnew$1('<path d="M16.5 12.75a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m2.25-2.25h.008v.008h-.008z" />');
2398
+ });
2117
2399
  },
2118
2400
  ChartBar(unit, props) {
2119
- xnew$1.extend(SVGTemplate, props);
2120
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 0 1 3 19.875zm6.75-4.5c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125zm6.75-4.5c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125z" />');
2401
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2402
+ xnew$1((unit) => {
2403
+ xnew$1.extend(OutLineTemplate, props);
2404
+ xnew$1('<path d="M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 0 1 3 19.875zm6.75-4.5c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125zm6.75-4.5c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125z" />');
2405
+ });
2121
2406
  },
2122
2407
  ChartBarSquare(unit, props) {
2123
- xnew$1.extend(SVGTemplate, props);
2124
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 14.25v2.25m3-4.5v4.5m3-6.75v6.75m3-9v9M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25" />');
2408
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2409
+ xnew$1((unit) => {
2410
+ xnew$1.extend(OutLineTemplate, props);
2411
+ xnew$1('<path d="M7.5 14.25v2.25m3-4.5v4.5m3-6.75v6.75m3-9v9M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25" />');
2412
+ });
2125
2413
  },
2126
2414
  ChartPie(unit, props) {
2127
- xnew$1.extend(SVGTemplate, props);
2128
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 6a7.5 7.5 0 1 0 7.5 7.5h-7.5z" />');
2129
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 10.5H21A7.5 7.5 0 0 0 13.5 3z" />');
2415
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2416
+ xnew$1((unit) => {
2417
+ xnew$1.extend(OutLineTemplate, props);
2418
+ xnew$1('<path d="M10.5 6a7.5 7.5 0 1 0 7.5 7.5h-7.5z" />');
2419
+ xnew$1('<path d="M13.5 10.5H21A7.5 7.5 0 0 0 13.5 3z" />');
2420
+ });
2130
2421
  },
2131
2422
  ChatBubbleBottomCenter(unit, props) {
2132
- xnew$1.extend(SVGTemplate, props);
2133
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227q1.603.236 3.238.364c.466.037.893.281 1.153.671L12 21l2.652-3.978c.26-.39.687-.634 1.153-.67q1.635-.13 3.238-.365c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.4 48.4 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z" />');
2423
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2424
+ xnew$1((unit) => {
2425
+ xnew$1.extend(OutLineTemplate, props);
2426
+ xnew$1('<path d="M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227q1.603.236 3.238.364c.466.037.893.281 1.153.671L12 21l2.652-3.978c.26-.39.687-.634 1.153-.67q1.635-.13 3.238-.365c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.4 48.4 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z" />');
2427
+ });
2134
2428
  },
2135
2429
  ChatBubbleBottomCenterText(unit, props) {
2136
- xnew$1.extend(SVGTemplate, props);
2137
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 8.25h9m-9 3H12m-9.75 1.51c0 1.6 1.123 2.994 2.707 3.227q1.694.25 3.423.379c.35.026.67.21.865.501L12 21l2.755-4.132a1.14 1.14 0 0 1 .865-.502a48 48 0 0 0 3.423-.379c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.4 48.4 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z" />');
2430
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2431
+ xnew$1((unit) => {
2432
+ xnew$1.extend(OutLineTemplate, props);
2433
+ xnew$1('<path d="M7.5 8.25h9m-9 3H12m-9.75 1.51c0 1.6 1.123 2.994 2.707 3.227q1.694.25 3.423.379c.35.026.67.21.865.501L12 21l2.755-4.132a1.14 1.14 0 0 1 .865-.502a48 48 0 0 0 3.423-.379c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.4 48.4 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z" />');
2434
+ });
2138
2435
  },
2139
2436
  ChatBubbleLeft(unit, props) {
2140
- xnew$1.extend(SVGTemplate, props);
2141
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227q1.63.24 3.293.369V21l4.076-4.076a1.53 1.53 0 0 1 1.037-.443a48 48 0 0 0 5.68-.494c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.4 48.4 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z" />');
2437
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2438
+ xnew$1((unit) => {
2439
+ xnew$1.extend(OutLineTemplate, props);
2440
+ xnew$1('<path d="M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227q1.63.24 3.293.369V21l4.076-4.076a1.53 1.53 0 0 1 1.037-.443a48 48 0 0 0 5.68-.494c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.4 48.4 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z" />');
2441
+ });
2142
2442
  },
2143
2443
  ChatBubbleLeftEllipsis(unit, props) {
2144
- xnew$1.extend(SVGTemplate, props);
2145
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.625 9.75a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375m-13.5 3.01c0 1.6 1.123 2.994 2.707 3.227q1.63.24 3.293.369V21l4.184-4.183a1.14 1.14 0 0 1 .778-.332a48 48 0 0 0 5.83-.498c1.585-.233 2.708-1.626 2.708-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.4 48.4 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z" />');
2444
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2445
+ xnew$1((unit) => {
2446
+ xnew$1.extend(OutLineTemplate, props);
2447
+ xnew$1('<path d="M8.625 9.75a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375m-13.5 3.01c0 1.6 1.123 2.994 2.707 3.227q1.63.24 3.293.369V21l4.184-4.183a1.14 1.14 0 0 1 .778-.332a48 48 0 0 0 5.83-.498c1.585-.233 2.708-1.626 2.708-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.4 48.4 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z" />');
2448
+ });
2146
2449
  },
2147
2450
  ChatBubbleLeftRight(unit, props) {
2148
- xnew$1.extend(SVGTemplate, props);
2149
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193q-.51.041-1.02.072v3.091l-3-3q-2.031 0-4.02-.163a2.1 2.1 0 0 1-.825-.242m9.345-8.334a2 2 0 0 0-.476-.095a48.6 48.6 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.5 48.5 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402c-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235q.865.113 1.74.194V21l4.155-4.155" />');
2451
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2452
+ xnew$1((unit) => {
2453
+ xnew$1.extend(OutLineTemplate, props);
2454
+ xnew$1('<path d="M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193q-.51.041-1.02.072v3.091l-3-3q-2.031 0-4.02-.163a2.1 2.1 0 0 1-.825-.242m9.345-8.334a2 2 0 0 0-.476-.095a48.6 48.6 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.5 48.5 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402c-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235q.865.113 1.74.194V21l4.155-4.155" />');
2455
+ });
2150
2456
  },
2151
2457
  ChatBubbleOvalLeft(unit, props) {
2152
- xnew$1.extend(SVGTemplate, props);
2153
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 20.25c4.97 0 9-3.694 9-8.25s-4.03-8.25-9-8.25S3 7.444 3 12c0 2.104.859 4.023 2.273 5.48c.432.447.74 1.04.586 1.641a4.5 4.5 0 0 1-.923 1.785A6 6 0 0 0 6 21c1.282 0 2.47-.402 3.445-1.087c.81.22 1.668.337 2.555.337" />');
2458
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2459
+ xnew$1((unit) => {
2460
+ xnew$1.extend(OutLineTemplate, props);
2461
+ xnew$1('<path d="M12 20.25c4.97 0 9-3.694 9-8.25s-4.03-8.25-9-8.25S3 7.444 3 12c0 2.104.859 4.023 2.273 5.48c.432.447.74 1.04.586 1.641a4.5 4.5 0 0 1-.923 1.785A6 6 0 0 0 6 21c1.282 0 2.47-.402 3.445-1.087c.81.22 1.668.337 2.555.337" />');
2462
+ });
2154
2463
  },
2155
2464
  ChatBubbleOvalLeftEllipsis(unit, props) {
2156
- xnew$1.extend(SVGTemplate, props);
2157
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.625 12a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375M21 12c0 4.556-4.03 8.25-9 8.25a9.8 9.8 0 0 1-2.555-.337A5.97 5.97 0 0 1 5.41 20.97a6 6 0 0 1-.474-.065a4.5 4.5 0 0 0 .978-2.025c.09-.457-.133-.901-.467-1.226C3.93 16.178 3 14.189 3 12c0-4.556 4.03-8.25 9-8.25s9 3.694 9 8.25" />');
2465
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2466
+ xnew$1((unit) => {
2467
+ xnew$1.extend(OutLineTemplate, props);
2468
+ xnew$1('<path d="M8.625 12a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375M21 12c0 4.556-4.03 8.25-9 8.25a9.8 9.8 0 0 1-2.555-.337A5.97 5.97 0 0 1 5.41 20.97a6 6 0 0 1-.474-.065a4.5 4.5 0 0 0 .978-2.025c.09-.457-.133-.901-.467-1.226C3.93 16.178 3 14.189 3 12c0-4.556 4.03-8.25 9-8.25s9 3.694 9 8.25" />');
2469
+ });
2158
2470
  },
2159
2471
  Check(unit, props) {
2160
- xnew$1.extend(SVGTemplate, props);
2161
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 12.75l6 6l9-13.5" />');
2472
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2473
+ xnew$1((unit) => {
2474
+ xnew$1.extend(OutLineTemplate, props);
2475
+ xnew$1('<path d="m4.5 12.75l6 6l9-13.5" />');
2476
+ });
2162
2477
  },
2163
2478
  CheckBadge(unit, props) {
2164
- xnew$1.extend(SVGTemplate, props);
2165
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15L15 9.75M21 12c0 1.268-.63 2.39-1.593 3.068a3.75 3.75 0 0 1-1.043 3.296a3.75 3.75 0 0 1-3.296 1.043A3.75 3.75 0 0 1 12 21c-1.268 0-2.39-.63-3.068-1.593a3.75 3.75 0 0 1-3.296-1.043a3.75 3.75 0 0 1-1.043-3.296A3.75 3.75 0 0 1 3 12c0-1.268.63-2.39 1.593-3.068a3.75 3.75 0 0 1 1.043-3.296a3.75 3.75 0 0 1 3.296-1.043A3.75 3.75 0 0 1 12 3c1.268 0 2.39.63 3.068 1.593a3.75 3.75 0 0 1 3.296 1.043a3.75 3.75 0 0 1 1.043 3.296A3.75 3.75 0 0 1 21 12" />');
2479
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2480
+ xnew$1((unit) => {
2481
+ xnew$1.extend(OutLineTemplate, props);
2482
+ xnew$1('<path d="M9 12.75L11.25 15L15 9.75M21 12c0 1.268-.63 2.39-1.593 3.068a3.75 3.75 0 0 1-1.043 3.296a3.75 3.75 0 0 1-3.296 1.043A3.75 3.75 0 0 1 12 21c-1.268 0-2.39-.63-3.068-1.593a3.75 3.75 0 0 1-3.296-1.043a3.75 3.75 0 0 1-1.043-3.296A3.75 3.75 0 0 1 3 12c0-1.268.63-2.39 1.593-3.068a3.75 3.75 0 0 1 1.043-3.296a3.75 3.75 0 0 1 3.296-1.043A3.75 3.75 0 0 1 12 3c1.268 0 2.39.63 3.068 1.593a3.75 3.75 0 0 1 3.296 1.043a3.75 3.75 0 0 1 1.043 3.296A3.75 3.75 0 0 1 21 12" />');
2483
+ });
2166
2484
  },
2167
2485
  CheckCircle(unit, props) {
2168
- xnew$1.extend(SVGTemplate, props);
2169
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15L15 9.75M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2486
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2487
+ xnew$1((unit) => {
2488
+ xnew$1.extend(OutLineTemplate, props);
2489
+ xnew$1('<path d="M9 12.75L11.25 15L15 9.75M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2490
+ });
2170
2491
  },
2171
2492
  ChevronDoubleDown(unit, props) {
2172
- xnew$1.extend(SVGTemplate, props);
2173
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 5.25l7.5 7.5l7.5-7.5m-15 6l7.5 7.5l7.5-7.5" />');
2493
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2494
+ xnew$1((unit) => {
2495
+ xnew$1.extend(OutLineTemplate, props);
2496
+ xnew$1('<path d="m4.5 5.25l7.5 7.5l7.5-7.5m-15 6l7.5 7.5l7.5-7.5" />');
2497
+ });
2174
2498
  },
2175
2499
  ChevronDoubleLeft(unit, props) {
2176
- xnew$1.extend(SVGTemplate, props);
2177
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m18.75 4.5l-7.5 7.5l7.5 7.5m-6-15L5.25 12l7.5 7.5" />');
2500
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2501
+ xnew$1((unit) => {
2502
+ xnew$1.extend(OutLineTemplate, props);
2503
+ xnew$1('<path d="m18.75 4.5l-7.5 7.5l7.5 7.5m-6-15L5.25 12l7.5 7.5" />');
2504
+ });
2178
2505
  },
2179
2506
  ChevronDoubleRight(unit, props) {
2180
- xnew$1.extend(SVGTemplate, props);
2181
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m5.25 4.5l7.5 7.5l-7.5 7.5m6-15l7.5 7.5l-7.5 7.5" />');
2507
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2508
+ xnew$1((unit) => {
2509
+ xnew$1.extend(OutLineTemplate, props);
2510
+ xnew$1('<path d="m5.25 4.5l7.5 7.5l-7.5 7.5m6-15l7.5 7.5l-7.5 7.5" />');
2511
+ });
2182
2512
  },
2183
2513
  ChevronDoubleUp(unit, props) {
2184
- xnew$1.extend(SVGTemplate, props);
2185
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 18.75l7.5-7.5l7.5 7.5" />');
2186
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 12.75l7.5-7.5l7.5 7.5" />');
2514
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2515
+ xnew$1((unit) => {
2516
+ xnew$1.extend(OutLineTemplate, props);
2517
+ xnew$1('<path d="m4.5 18.75l7.5-7.5l7.5 7.5" />');
2518
+ xnew$1('<path d="m4.5 12.75l7.5-7.5l7.5 7.5" />');
2519
+ });
2187
2520
  },
2188
2521
  ChevronDown(unit, props) {
2189
- xnew$1.extend(SVGTemplate, props);
2190
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m19.5 8.25l-7.5 7.5l-7.5-7.5" />');
2522
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2523
+ xnew$1((unit) => {
2524
+ xnew$1.extend(OutLineTemplate, props);
2525
+ xnew$1('<path d="m19.5 8.25l-7.5 7.5l-7.5-7.5" />');
2526
+ });
2191
2527
  },
2192
2528
  ChevronLeft(unit, props) {
2193
- xnew$1.extend(SVGTemplate, props);
2194
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 19.5L8.25 12l7.5-7.5" />');
2529
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2530
+ xnew$1((unit) => {
2531
+ xnew$1.extend(OutLineTemplate, props);
2532
+ xnew$1('<path d="M15.75 19.5L8.25 12l7.5-7.5" />');
2533
+ });
2195
2534
  },
2196
2535
  ChevronRight(unit, props) {
2197
- xnew$1.extend(SVGTemplate, props);
2198
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m8.25 4.5l7.5 7.5l-7.5 7.5" />');
2536
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2537
+ xnew$1((unit) => {
2538
+ xnew$1.extend(OutLineTemplate, props);
2539
+ xnew$1('<path d="m8.25 4.5l7.5 7.5l-7.5 7.5" />');
2540
+ });
2199
2541
  },
2200
2542
  ChevronUp(unit, props) {
2201
- xnew$1.extend(SVGTemplate, props);
2202
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 15.75l7.5-7.5l7.5 7.5" />');
2543
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2544
+ xnew$1((unit) => {
2545
+ xnew$1.extend(OutLineTemplate, props);
2546
+ xnew$1('<path d="m4.5 15.75l7.5-7.5l7.5 7.5" />');
2547
+ });
2203
2548
  },
2204
2549
  ChevronUpDown(unit, props) {
2205
- xnew$1.extend(SVGTemplate, props);
2206
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 15L12 18.75L15.75 15m-7.5-6L12 5.25L15.75 9" />');
2550
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2551
+ xnew$1((unit) => {
2552
+ xnew$1.extend(OutLineTemplate, props);
2553
+ xnew$1('<path d="M8.25 15L12 18.75L15.75 15m-7.5-6L12 5.25L15.75 9" />');
2554
+ });
2207
2555
  },
2208
2556
  CircleStack(unit, props) {
2209
- xnew$1.extend(SVGTemplate, props);
2210
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.25c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125" />');
2557
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2558
+ xnew$1((unit) => {
2559
+ xnew$1.extend(OutLineTemplate, props);
2560
+ xnew$1('<path d="M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.25c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125" />');
2561
+ });
2211
2562
  },
2212
2563
  Clipboard(unit, props) {
2213
- xnew$1.extend(SVGTemplate, props);
2214
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0q.083.292.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0q.002-.32.084-.612m7.332 0q.969.073 1.927.184c1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48 48 0 0 1 1.927-.184" />');
2564
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2565
+ xnew$1((unit) => {
2566
+ xnew$1.extend(OutLineTemplate, props);
2567
+ xnew$1('<path d="M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0q.083.292.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0q.002-.32.084-.612m7.332 0q.969.073 1.927.184c1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48 48 0 0 1 1.927-.184" />');
2568
+ });
2215
2569
  },
2216
2570
  ClipboardDocument(unit, props) {
2217
- xnew$1.extend(SVGTemplate, props);
2218
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 7.5V6.108c0-1.135.845-2.098 1.976-2.192q.56-.045 1.124-.08M15.75 18H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48 48 0 0 0-1.123-.08M15.75 18.75v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5A3.375 3.375 0 0 0 6.375 7.5H5.25m11.9-3.664A2.25 2.25 0 0 0 15 2.25h-1.5a2.25 2.25 0 0 0-2.15 1.586m5.8 0q.099.316.1.664v.75h-6V4.5q.001-.348.1-.664M6.75 7.5H4.875c-.621 0-1.125.504-1.125 1.125v12c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V16.5a9 9 0 0 0-9-9" />');
2571
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2572
+ xnew$1((unit) => {
2573
+ xnew$1.extend(OutLineTemplate, props);
2574
+ xnew$1('<path d="M8.25 7.5V6.108c0-1.135.845-2.098 1.976-2.192q.56-.045 1.124-.08M15.75 18H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48 48 0 0 0-1.123-.08M15.75 18.75v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5A3.375 3.375 0 0 0 6.375 7.5H5.25m11.9-3.664A2.25 2.25 0 0 0 15 2.25h-1.5a2.25 2.25 0 0 0-2.15 1.586m5.8 0q.099.316.1.664v.75h-6V4.5q.001-.348.1-.664M6.75 7.5H4.875c-.621 0-1.125.504-1.125 1.125v12c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V16.5a9 9 0 0 0-9-9" />');
2575
+ });
2219
2576
  },
2220
2577
  ClipboardDocumentCheck(unit, props) {
2221
- xnew$1.extend(SVGTemplate, props);
2222
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M11.35 3.836q-.099.316-.1.664c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75a2.3 2.3 0 0 0-.1-.664m-5.8 0A2.25 2.25 0 0 1 13.5 2.25H15a2.25 2.25 0 0 1 2.15 1.586m-5.8 0q-.563.035-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m8.9-4.414q.564.035 1.124.08c1.131.094 1.976 1.057 1.976 2.192V16.5A2.25 2.25 0 0 1 18 18.75h-2.25m-7.5-10.5H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V18.75m-7.5-10.5h6.375c.621 0 1.125.504 1.125 1.125v9.375m-8.25-3l1.5 1.5l3-3.75" />');
2578
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2579
+ xnew$1((unit) => {
2580
+ xnew$1.extend(OutLineTemplate, props);
2581
+ xnew$1('<path d="M11.35 3.836q-.099.316-.1.664c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75a2.3 2.3 0 0 0-.1-.664m-5.8 0A2.25 2.25 0 0 1 13.5 2.25H15a2.25 2.25 0 0 1 2.15 1.586m-5.8 0q-.563.035-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m8.9-4.414q.564.035 1.124.08c1.131.094 1.976 1.057 1.976 2.192V16.5A2.25 2.25 0 0 1 18 18.75h-2.25m-7.5-10.5H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V18.75m-7.5-10.5h6.375c.621 0 1.125.504 1.125 1.125v9.375m-8.25-3l1.5 1.5l3-3.75" />');
2582
+ });
2223
2583
  },
2224
2584
  ClipboardDocumentList(unit, props) {
2225
- xnew$1.extend(SVGTemplate, props);
2226
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48 48 0 0 0-1.123-.08m-5.801 0q-.099.316-.1.664c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75a2.3 2.3 0 0 0-.1-.664m-5.8 0A2.25 2.25 0 0 1 13.5 2.25H15a2.25 2.25 0 0 1 2.15 1.586m-5.8 0q-.563.035-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125zM6.75 12h.008v.008H6.75zm0 3h.008v.008H6.75zm0 3h.008v.008H6.75z" />');
2585
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2586
+ xnew$1((unit) => {
2587
+ xnew$1.extend(OutLineTemplate, props);
2588
+ xnew$1('<path d="M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48 48 0 0 0-1.123-.08m-5.801 0q-.099.316-.1.664c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75a2.3 2.3 0 0 0-.1-.664m-5.8 0A2.25 2.25 0 0 1 13.5 2.25H15a2.25 2.25 0 0 1 2.15 1.586m-5.8 0q-.563.035-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125zM6.75 12h.008v.008H6.75zm0 3h.008v.008H6.75zm0 3h.008v.008H6.75z" />');
2589
+ });
2227
2590
  },
2228
2591
  Clock(unit, props) {
2229
- xnew$1.extend(SVGTemplate, props);
2230
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2592
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2593
+ xnew$1((unit) => {
2594
+ xnew$1.extend(OutLineTemplate, props);
2595
+ xnew$1('<path d="M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2596
+ });
2231
2597
  },
2232
2598
  Cloud(unit, props) {
2233
- xnew$1.extend(SVGTemplate, props);
2234
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 15a4.5 4.5 0 0 0 4.5 4.5H18a3.75 3.75 0 0 0 1.332-7.257a3 3 0 0 0-3.758-3.848a5.25 5.25 0 0 0-10.233 2.33A4.5 4.5 0 0 0 2.25 15" />');
2599
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2600
+ xnew$1((unit) => {
2601
+ xnew$1.extend(OutLineTemplate, props);
2602
+ xnew$1('<path d="M2.25 15a4.5 4.5 0 0 0 4.5 4.5H18a3.75 3.75 0 0 0 1.332-7.257a3 3 0 0 0-3.758-3.848a5.25 5.25 0 0 0-10.233 2.33A4.5 4.5 0 0 0 2.25 15" />');
2603
+ });
2235
2604
  },
2236
2605
  CloudArrowDown(unit, props) {
2237
- xnew$1.extend(SVGTemplate, props);
2238
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 9.75v6.75m0 0l-3-3m3 3l3-3m-8.25 6a4.5 4.5 0 0 1-1.41-8.775a5.25 5.25 0 0 1 10.233-2.33a3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5z" />');
2606
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2607
+ xnew$1((unit) => {
2608
+ xnew$1.extend(OutLineTemplate, props);
2609
+ xnew$1('<path d="M12 9.75v6.75m0 0l-3-3m3 3l3-3m-8.25 6a4.5 4.5 0 0 1-1.41-8.775a5.25 5.25 0 0 1 10.233-2.33a3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5z" />');
2610
+ });
2239
2611
  },
2240
2612
  CloudArrowUp(unit, props) {
2241
- xnew$1.extend(SVGTemplate, props);
2242
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 16.5V9.75m0 0l3 3m-3-3l-3 3M6.75 19.5a4.5 4.5 0 0 1-1.41-8.775a5.25 5.25 0 0 1 10.233-2.33a3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5z" />');
2613
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2614
+ xnew$1((unit) => {
2615
+ xnew$1.extend(OutLineTemplate, props);
2616
+ xnew$1('<path d="M12 16.5V9.75m0 0l3 3m-3-3l-3 3M6.75 19.5a4.5 4.5 0 0 1-1.41-8.775a5.25 5.25 0 0 1 10.233-2.33a3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5z" />');
2617
+ });
2243
2618
  },
2244
2619
  CodeBracket(unit, props) {
2245
- xnew$1.extend(SVGTemplate, props);
2246
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5" />');
2620
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2621
+ xnew$1((unit) => {
2622
+ xnew$1.extend(OutLineTemplate, props);
2623
+ xnew$1('<path d="M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5" />');
2624
+ });
2247
2625
  },
2248
2626
  CodeBracketSquare(unit, props) {
2249
- xnew$1.extend(SVGTemplate, props);
2250
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.25 9.75L16.5 12l-2.25 2.25m-4.5 0L7.5 12l2.25-2.25M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25" />');
2627
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2628
+ xnew$1((unit) => {
2629
+ xnew$1.extend(OutLineTemplate, props);
2630
+ xnew$1('<path d="M14.25 9.75L16.5 12l-2.25 2.25m-4.5 0L7.5 12l2.25-2.25M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25" />');
2631
+ });
2251
2632
  },
2252
2633
  Cog(unit, props) {
2253
- xnew$1.extend(SVGTemplate, props);
2254
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12a7.5 7.5 0 0 0 15 0m-15 0a7.5 7.5 0 1 1 15 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077l1.41-.513m14.095-5.13l1.41-.513M5.106 17.785l1.15-.964m11.49-9.642l1.149-.964M7.501 19.795l.75-1.3m7.5-12.99l.75-1.3m-6.063 16.658l.26-1.477m2.605-14.772l.26-1.477m0 17.726l-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205L12 12m6.894 5.785l-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864l-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495" />');
2634
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2635
+ xnew$1((unit) => {
2636
+ xnew$1.extend(OutLineTemplate, props);
2637
+ xnew$1('<path d="M4.5 12a7.5 7.5 0 0 0 15 0m-15 0a7.5 7.5 0 1 1 15 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077l1.41-.513m14.095-5.13l1.41-.513M5.106 17.785l1.15-.964m11.49-9.642l1.149-.964M7.501 19.795l.75-1.3m7.5-12.99l.75-1.3m-6.063 16.658l.26-1.477m2.605-14.772l.26-1.477m0 17.726l-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205L12 12m6.894 5.785l-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864l-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495" />');
2638
+ });
2255
2639
  },
2256
2640
  Cog6Tooth(unit, props) {
2257
- xnew$1.extend(SVGTemplate, props);
2258
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87q.11.06.22.127c.325.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a8 8 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a7 7 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a7 7 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a7 7 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124q.108-.066.22-.128c.332-.183.582-.495.644-.869z" />');
2259
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
2641
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2642
+ xnew$1((unit) => {
2643
+ xnew$1.extend(OutLineTemplate, props);
2644
+ xnew$1('<path d="M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87q.11.06.22.127c.325.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a8 8 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a7 7 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a7 7 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a7 7 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124q.108-.066.22-.128c.332-.183.582-.495.644-.869z" />');
2645
+ xnew$1('<path d="M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
2646
+ });
2260
2647
  },
2261
2648
  Cog8Tooth(unit, props) {
2262
- xnew$1.extend(SVGTemplate, props);
2263
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.343 3.94c.09-.542.56-.94 1.11-.94h1.093c.55 0 1.02.398 1.11.94l.149.894c.07.424.384.764.78.93c.398.164.855.142 1.205-.108l.737-.527a1.125 1.125 0 0 1 1.45.12l.773.774c.39.389.44 1.002.12 1.45l-.527.737c-.25.35-.272.806-.107 1.204s.505.71.93.78l.893.15c.543.09.94.559.94 1.109v1.094c0 .55-.397 1.02-.94 1.11l-.894.149c-.424.07-.764.383-.929.78c-.165.398-.143.854.107 1.204l.527.738c.32.447.269 1.06-.12 1.45l-.774.773a1.125 1.125 0 0 1-1.449.12l-.738-.527c-.35-.25-.806-.272-1.203-.107c-.398.165-.71.505-.781.929l-.149.894c-.09.542-.56.94-1.11.94h-1.094c-.55 0-1.019-.398-1.11-.94l-.148-.894c-.071-.424-.384-.764-.781-.93c-.398-.164-.854-.142-1.204.108l-.738.527c-.447.32-1.06.269-1.45-.12l-.773-.774a1.125 1.125 0 0 1-.12-1.45l.527-.737c.25-.35.272-.806.108-1.204s-.506-.71-.93-.78l-.894-.15c-.542-.09-.94-.56-.94-1.109v-1.094c0-.55.398-1.02.94-1.11l.894-.149c.424-.07.765-.383.93-.78c.165-.398.143-.854-.108-1.204l-.526-.738a1.125 1.125 0 0 1 .12-1.45l.773-.773a1.125 1.125 0 0 1 1.45-.12l.737.527c.35.25.807.272 1.204.107s.71-.505.78-.929z" />');
2264
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
2649
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2650
+ xnew$1((unit) => {
2651
+ xnew$1.extend(OutLineTemplate, props);
2652
+ xnew$1('<path d="M10.343 3.94c.09-.542.56-.94 1.11-.94h1.093c.55 0 1.02.398 1.11.94l.149.894c.07.424.384.764.78.93c.398.164.855.142 1.205-.108l.737-.527a1.125 1.125 0 0 1 1.45.12l.773.774c.39.389.44 1.002.12 1.45l-.527.737c-.25.35-.272.806-.107 1.204s.505.71.93.78l.893.15c.543.09.94.559.94 1.109v1.094c0 .55-.397 1.02-.94 1.11l-.894.149c-.424.07-.764.383-.929.78c-.165.398-.143.854.107 1.204l.527.738c.32.447.269 1.06-.12 1.45l-.774.773a1.125 1.125 0 0 1-1.449.12l-.738-.527c-.35-.25-.806-.272-1.203-.107c-.398.165-.71.505-.781.929l-.149.894c-.09.542-.56.94-1.11.94h-1.094c-.55 0-1.019-.398-1.11-.94l-.148-.894c-.071-.424-.384-.764-.781-.93c-.398-.164-.854-.142-1.204.108l-.738.527c-.447.32-1.06.269-1.45-.12l-.773-.774a1.125 1.125 0 0 1-.12-1.45l.527-.737c.25-.35.272-.806.108-1.204s-.506-.71-.93-.78l-.894-.15c-.542-.09-.94-.56-.94-1.109v-1.094c0-.55.398-1.02.94-1.11l.894-.149c.424-.07.765-.383.93-.78c.165-.398.143-.854-.108-1.204l-.526-.738a1.125 1.125 0 0 1 .12-1.45l.773-.773a1.125 1.125 0 0 1 1.45-.12l.737.527c.35.25.807.272 1.204.107s.71-.505.78-.929z" />');
2653
+ xnew$1('<path d="M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
2654
+ });
2265
2655
  },
2266
2656
  CommandLine(unit, props) {
2267
- xnew$1.extend(SVGTemplate, props);
2268
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m6.75 7.5l3 2.25l-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25" />');
2657
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2658
+ xnew$1((unit) => {
2659
+ xnew$1.extend(OutLineTemplate, props);
2660
+ xnew$1('<path d="m6.75 7.5l3 2.25l-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25" />');
2661
+ });
2269
2662
  },
2270
2663
  ComputerDesktop(unit, props) {
2271
- xnew$1.extend(SVGTemplate, props);
2272
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25" />');
2664
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2665
+ xnew$1((unit) => {
2666
+ xnew$1.extend(OutLineTemplate, props);
2667
+ xnew$1('<path d="M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25" />');
2668
+ });
2273
2669
  },
2274
2670
  CpuChip(unit, props) {
2275
- xnew$1.extend(SVGTemplate, props);
2276
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 3v1.5M4.5 8.25H3m18 0h-1.5M4.5 12H3m18 0h-1.5m-15 3.75H3m18 0h-1.5M8.25 19.5V21M12 3v1.5m0 15V21m3.75-18v1.5m0 15V21m-9-1.5h10.5a2.25 2.25 0 0 0 2.25-2.25V6.75a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 6.75v10.5a2.25 2.25 0 0 0 2.25 2.25m.75-12h9v9h-9z" />');
2671
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2672
+ xnew$1((unit) => {
2673
+ xnew$1.extend(OutLineTemplate, props);
2674
+ xnew$1('<path d="M8.25 3v1.5M4.5 8.25H3m18 0h-1.5M4.5 12H3m18 0h-1.5m-15 3.75H3m18 0h-1.5M8.25 19.5V21M12 3v1.5m0 15V21m3.75-18v1.5m0 15V21m-9-1.5h10.5a2.25 2.25 0 0 0 2.25-2.25V6.75a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 6.75v10.5a2.25 2.25 0 0 0 2.25 2.25m.75-12h9v9h-9z" />');
2675
+ });
2277
2676
  },
2278
2677
  CreditCard(unit, props) {
2279
- xnew$1.extend(SVGTemplate, props);
2280
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 8.25h19.5M2.25 9h19.5m-16.5 5.25h6m-6 2.25h3m-3.75 3h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5" />');
2678
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2679
+ xnew$1((unit) => {
2680
+ xnew$1.extend(OutLineTemplate, props);
2681
+ xnew$1('<path d="M2.25 8.25h19.5M2.25 9h19.5m-16.5 5.25h6m-6 2.25h3m-3.75 3h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5" />');
2682
+ });
2281
2683
  },
2282
2684
  Cube(unit, props) {
2283
- xnew$1.extend(SVGTemplate, props);
2284
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m21 7.5l-9-5.25L3 7.5m18 0l-9 5.25m9-5.25v9l-9 5.25M3 7.5l9 5.25M3 7.5v9l9 5.25m0-9v9" />');
2685
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2686
+ xnew$1((unit) => {
2687
+ xnew$1.extend(OutLineTemplate, props);
2688
+ xnew$1('<path d="m21 7.5l-9-5.25L3 7.5m18 0l-9 5.25m9-5.25v9l-9 5.25M3 7.5l9 5.25M3 7.5v9l9 5.25m0-9v9" />');
2689
+ });
2285
2690
  },
2286
2691
  CubeTransparent(unit, props) {
2287
- xnew$1.extend(SVGTemplate, props);
2288
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m21 7.5l-2.25-1.312M21 7.5v2.25m0-2.25l-2.25 1.313M3 7.5l2.25-1.312M3 7.5l2.25 1.313M3 7.5v2.25m9 3l2.25-1.312M12 12.75l-2.25-1.312M12 12.75V15m0 6.75l2.25-1.312M12 21.75V19.5m0 2.25l-2.25-1.312m0-16.875L12 2.25l2.25 1.313M21 14.25v2.25l-2.25 1.313m-13.5 0L3 16.5v-2.25" />');
2692
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2693
+ xnew$1((unit) => {
2694
+ xnew$1.extend(OutLineTemplate, props);
2695
+ xnew$1('<path d="m21 7.5l-2.25-1.312M21 7.5v2.25m0-2.25l-2.25 1.313M3 7.5l2.25-1.312M3 7.5l2.25 1.313M3 7.5v2.25m9 3l2.25-1.312M12 12.75l-2.25-1.312M12 12.75V15m0 6.75l2.25-1.312M12 21.75V19.5m0 2.25l-2.25-1.312m0-16.875L12 2.25l2.25 1.313M21 14.25v2.25l-2.25 1.313m-13.5 0L3 16.5v-2.25" />');
2696
+ });
2289
2697
  },
2290
2698
  CurrencyBangladeshi(unit, props) {
2291
- xnew$1.extend(SVGTemplate, props);
2292
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m8.25 7.5l.415-.207a.75.75 0 0 1 1.085.67V10.5m0 0h6m-6 0h-1.5m1.5 0v5.438c0 .354.161.697.473.865a3.75 3.75 0 0 0 5.452-2.553c.083-.409-.263-.75-.68-.75h-.745M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2699
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2700
+ xnew$1((unit) => {
2701
+ xnew$1.extend(OutLineTemplate, props);
2702
+ xnew$1('<path d="m8.25 7.5l.415-.207a.75.75 0 0 1 1.085.67V10.5m0 0h6m-6 0h-1.5m1.5 0v5.438c0 .354.161.697.473.865a3.75 3.75 0 0 0 5.452-2.553c.083-.409-.263-.75-.68-.75h-.745M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2703
+ });
2293
2704
  },
2294
2705
  CurrencyDollar(unit, props) {
2295
- xnew$1.extend(SVGTemplate, props);
2296
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 6v12m-3-2.818l.879.659c1.171.879 3.07.879 4.242 0s1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659c-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2706
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2707
+ xnew$1((unit) => {
2708
+ xnew$1.extend(OutLineTemplate, props);
2709
+ xnew$1('<path d="M12 6v12m-3-2.818l.879.659c1.171.879 3.07.879 4.242 0s1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659c-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2710
+ });
2297
2711
  },
2298
2712
  CurrencyEuro(unit, props) {
2299
- xnew$1.extend(SVGTemplate, props);
2300
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.25 7.756a4.5 4.5 0 1 0 0 8.488M7.5 10.5h5.25m-5.25 3h5.25M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2713
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2714
+ xnew$1((unit) => {
2715
+ xnew$1.extend(OutLineTemplate, props);
2716
+ xnew$1('<path d="M14.25 7.756a4.5 4.5 0 1 0 0 8.488M7.5 10.5h5.25m-5.25 3h5.25M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2717
+ });
2301
2718
  },
2302
2719
  CurrencyPound(unit, props) {
2303
- xnew$1.extend(SVGTemplate, props);
2304
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.121 7.629A3 3 0 0 0 9.017 9.43a2.6 2.6 0 0 0 .028.636l.506 3.541a4.5 4.5 0 0 1-.43 2.65L9 16.5l1.539-.513a2.25 2.25 0 0 1 1.422 0l.655.218a2.25 2.25 0 0 0 1.718-.122L15 15.75M8.25 12H12m9 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2720
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2721
+ xnew$1((unit) => {
2722
+ xnew$1.extend(OutLineTemplate, props);
2723
+ xnew$1('<path d="M14.121 7.629A3 3 0 0 0 9.017 9.43a2.6 2.6 0 0 0 .028.636l.506 3.541a4.5 4.5 0 0 1-.43 2.65L9 16.5l1.539-.513a2.25 2.25 0 0 1 1.422 0l.655.218a2.25 2.25 0 0 0 1.718-.122L15 15.75M8.25 12H12m9 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2724
+ });
2305
2725
  },
2306
2726
  CurrencyRupee(unit, props) {
2307
- xnew$1.extend(SVGTemplate, props);
2308
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 8.25H9m6 3H9m3 6l-3-3h1.5a3 3 0 1 0 0-6M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2727
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2728
+ xnew$1((unit) => {
2729
+ xnew$1.extend(OutLineTemplate, props);
2730
+ xnew$1('<path d="M15 8.25H9m6 3H9m3 6l-3-3h1.5a3 3 0 1 0 0-6M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2731
+ });
2309
2732
  },
2310
2733
  CurrencyYen(unit, props) {
2311
- xnew$1.extend(SVGTemplate, props);
2312
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m9 7.5l3 4.5m0 0l3-4.5M12 12v5.25M15 12H9m6 3H9m12-3a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2734
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2735
+ xnew$1((unit) => {
2736
+ xnew$1.extend(OutLineTemplate, props);
2737
+ xnew$1('<path d="m9 7.5l3 4.5m0 0l3-4.5M12 12v5.25M15 12H9m6 3H9m12-3a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2738
+ });
2313
2739
  },
2314
2740
  CursorArrowRays(unit, props) {
2315
- xnew$1.extend(SVGTemplate, props);
2316
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.042 21.672L13.684 16.6m0 0l-2.51 2.225l.569-9.47l5.227 7.917zM12 2.25V4.5m5.834.166l-1.591 1.591M20.25 10.5H18M7.757 14.743l-1.59 1.59M6 10.5H3.75m4.007-4.243l-1.59-1.59" />');
2741
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2742
+ xnew$1((unit) => {
2743
+ xnew$1.extend(OutLineTemplate, props);
2744
+ xnew$1('<path d="M15.042 21.672L13.684 16.6m0 0l-2.51 2.225l.569-9.47l5.227 7.917zM12 2.25V4.5m5.834.166l-1.591 1.591M20.25 10.5H18M7.757 14.743l-1.59 1.59M6 10.5H3.75m4.007-4.243l-1.59-1.59" />');
2745
+ });
2317
2746
  },
2318
2747
  CursorArrowRipple(unit, props) {
2319
- xnew$1.extend(SVGTemplate, props);
2320
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.042 21.672L13.684 16.6m0 0l-2.51 2.225l.569-9.47l5.227 7.917zm-7.518-.267A8.25 8.25 0 1 1 20.25 10.5M8.288 14.212A5.25 5.25 0 1 1 17.25 10.5" />');
2748
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2749
+ xnew$1((unit) => {
2750
+ xnew$1.extend(OutLineTemplate, props);
2751
+ xnew$1('<path d="M15.042 21.672L13.684 16.6m0 0l-2.51 2.225l.569-9.47l5.227 7.917zm-7.518-.267A8.25 8.25 0 1 1 20.25 10.5M8.288 14.212A5.25 5.25 0 1 1 17.25 10.5" />');
2752
+ });
2321
2753
  },
2322
2754
  DevicePhoneMobile(unit, props) {
2323
- xnew$1.extend(SVGTemplate, props);
2324
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 1.5H8.25A2.25 2.25 0 0 0 6 3.75v16.5a2.25 2.25 0 0 0 2.25 2.25h7.5A2.25 2.25 0 0 0 18 20.25V3.75a2.25 2.25 0 0 0-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3" />');
2755
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2756
+ xnew$1((unit) => {
2757
+ xnew$1.extend(OutLineTemplate, props);
2758
+ xnew$1('<path d="M10.5 1.5H8.25A2.25 2.25 0 0 0 6 3.75v16.5a2.25 2.25 0 0 0 2.25 2.25h7.5A2.25 2.25 0 0 0 18 20.25V3.75a2.25 2.25 0 0 0-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3" />');
2759
+ });
2325
2760
  },
2326
2761
  DeviceTablet(unit, props) {
2327
- xnew$1.extend(SVGTemplate, props);
2328
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 19.5h3m-6.75 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-15a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 4.5v15a2.25 2.25 0 0 0 2.25 2.25" />');
2762
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2763
+ xnew$1((unit) => {
2764
+ xnew$1.extend(OutLineTemplate, props);
2765
+ xnew$1('<path d="M10.5 19.5h3m-6.75 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-15a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 4.5v15a2.25 2.25 0 0 0 2.25 2.25" />');
2766
+ });
2329
2767
  },
2330
2768
  Divide(unit, props) {
2331
- xnew$1.extend(SVGTemplate, props);
2332
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.499 11.998h15m-7.5-6.75h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0M12 18.751h.007v.007H12zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
2769
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2770
+ xnew$1((unit) => {
2771
+ xnew$1.extend(OutLineTemplate, props);
2772
+ xnew$1('<path d="M4.499 11.998h15m-7.5-6.75h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0M12 18.751h.007v.007H12zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
2773
+ });
2333
2774
  },
2334
2775
  Document(unit, props) {
2335
- xnew$1.extend(SVGTemplate, props);
2336
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2776
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2777
+ xnew$1((unit) => {
2778
+ xnew$1.extend(OutLineTemplate, props);
2779
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2780
+ });
2337
2781
  },
2338
2782
  DocumentArrowDown(unit, props) {
2339
- xnew$1.extend(SVGTemplate, props);
2340
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m.75 12l3 3m0 0l3-3m-3 3v-6m-1.5-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2783
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2784
+ xnew$1((unit) => {
2785
+ xnew$1.extend(OutLineTemplate, props);
2786
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m.75 12l3 3m0 0l3-3m-3 3v-6m-1.5-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2787
+ });
2341
2788
  },
2342
2789
  DocumentArrowUp(unit, props) {
2343
- xnew$1.extend(SVGTemplate, props);
2344
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12l-3-3m0 0l-3 3m3-3v6m-1.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2790
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2791
+ xnew$1((unit) => {
2792
+ xnew$1.extend(OutLineTemplate, props);
2793
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12l-3-3m0 0l-3 3m3-3v6m-1.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2794
+ });
2345
2795
  },
2346
2796
  DocumentChartBar(unit, props) {
2347
- xnew$1.extend(SVGTemplate, props);
2348
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25M9 16.5v.75m3-3v3M15 12v5.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2797
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2798
+ xnew$1((unit) => {
2799
+ xnew$1.extend(OutLineTemplate, props);
2800
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25M9 16.5v.75m3-3v3M15 12v5.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2801
+ });
2349
2802
  },
2350
2803
  DocumentCheck(unit, props) {
2351
- xnew$1.extend(SVGTemplate, props);
2352
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 0 1 9 9v.375M10.125 2.25A3.375 3.375 0 0 1 13.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 0 1 3.375 3.375M9 15l2.25 2.25L15 12" />');
2804
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2805
+ xnew$1((unit) => {
2806
+ xnew$1.extend(OutLineTemplate, props);
2807
+ xnew$1('<path d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 0 1 9 9v.375M10.125 2.25A3.375 3.375 0 0 1 13.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 0 1 3.375 3.375M9 15l2.25 2.25L15 12" />');
2808
+ });
2353
2809
  },
2354
2810
  DocumentCurrencyBangladeshi(unit, props) {
2355
- xnew$1.extend(SVGTemplate, props);
2356
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 8.25l.22-.22a.75.75 0 0 1 1.28.53v6.441c0 .472.214.934.64 1.137a3.75 3.75 0 0 0 4.994-1.77c.205-.428-.152-.868-.627-.868h-.507m-6-2.25h7.5M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2811
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2812
+ xnew$1((unit) => {
2813
+ xnew$1.extend(OutLineTemplate, props);
2814
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 8.25l.22-.22a.75.75 0 0 1 1.28.53v6.441c0 .472.214.934.64 1.137a3.75 3.75 0 0 0 4.994-1.77c.205-.428-.152-.868-.627-.868h-.507m-6-2.25h7.5M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2815
+ });
2357
2816
  },
2358
2817
  DocumentCurrencyDollar(unit, props) {
2359
- xnew$1.extend(SVGTemplate, props);
2360
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v7.5m2.25-6.466a9 9 0 0 0-3.461-.203c-.536.072-.974.478-1.021 1.017a5 5 0 0 0-.018.402c0 .464.336.844.775.994l2.95 1.012c.44.15.775.53.775.994q0 .204-.018.402c-.047.539-.485.945-1.021 1.017a9.1 9.1 0 0 1-3.461-.203M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2818
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2819
+ xnew$1((unit) => {
2820
+ xnew$1.extend(OutLineTemplate, props);
2821
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v7.5m2.25-6.466a9 9 0 0 0-3.461-.203c-.536.072-.974.478-1.021 1.017a5 5 0 0 0-.018.402c0 .464.336.844.775.994l2.95 1.012c.44.15.775.53.775.994q0 .204-.018.402c-.047.539-.485.945-1.021 1.017a9.1 9.1 0 0 1-3.461-.203M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2822
+ });
2361
2823
  },
2362
2824
  DocumentCurrencyEuro(unit, props) {
2363
- xnew$1.extend(SVGTemplate, props);
2364
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 11.625h4.5m-4.5 2.25h4.5m2.121 1.527c-1.171 1.464-3.07 1.464-4.242 0c-1.172-1.465-1.172-3.84 0-5.304s3.07-1.464 4.242 0M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2825
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2826
+ xnew$1((unit) => {
2827
+ xnew$1.extend(OutLineTemplate, props);
2828
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 11.625h4.5m-4.5 2.25h4.5m2.121 1.527c-1.171 1.464-3.07 1.464-4.242 0c-1.172-1.465-1.172-3.84 0-5.304s3.07-1.464 4.242 0M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2829
+ });
2365
2830
  },
2366
2831
  DocumentCurrencyPound(unit, props) {
2367
- xnew$1.extend(SVGTemplate, props);
2368
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.621 9.879a3 3 0 0 0-5.02 2.897l.164.609a4.5 4.5 0 0 1-.108 2.676l-.157.439l.44-.22a2.86 2.86 0 0 1 2.185-.155c.72.24 1.507.184 2.186-.155L15 18m-6.75-2.25H12m-1.5-13.5H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2832
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2833
+ xnew$1((unit) => {
2834
+ xnew$1.extend(OutLineTemplate, props);
2835
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.621 9.879a3 3 0 0 0-5.02 2.897l.164.609a4.5 4.5 0 0 1-.108 2.676l-.157.439l.44-.22a2.86 2.86 0 0 1 2.185-.155c.72.24 1.507.184 2.186-.155L15 18m-6.75-2.25H12m-1.5-13.5H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2836
+ });
2369
2837
  },
2370
2838
  DocumentCurrencyRupee(unit, props) {
2371
- xnew$1.extend(SVGTemplate, props);
2372
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 9h3.75m-4.5 2.625h4.5M12 18.75L9.75 16.5h.375a2.625 2.625 0 0 0 0-5.25H9.75m.75-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2839
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2840
+ xnew$1((unit) => {
2841
+ xnew$1.extend(OutLineTemplate, props);
2842
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 9h3.75m-4.5 2.625h4.5M12 18.75L9.75 16.5h.375a2.625 2.625 0 0 0 0-5.25H9.75m.75-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2843
+ });
2373
2844
  },
2374
2845
  DocumentCurrencyYen(unit, props) {
2375
- xnew$1.extend(SVGTemplate, props);
2376
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m1.5 9l2.25 3m0 0l2.25-3m-2.25 3v4.5M9.75 15h4.5m-4.5 2.25h4.5m-3.75-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2846
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2847
+ xnew$1((unit) => {
2848
+ xnew$1.extend(OutLineTemplate, props);
2849
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m1.5 9l2.25 3m0 0l2.25-3m-2.25 3v4.5M9.75 15h4.5m-4.5 2.25h4.5m-3.75-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2850
+ });
2377
2851
  },
2378
2852
  DocumentDuplicate(unit, props) {
2379
- xnew$1.extend(SVGTemplate, props);
2380
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9 9 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9 9 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75" />');
2853
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2854
+ xnew$1((unit) => {
2855
+ xnew$1.extend(OutLineTemplate, props);
2856
+ xnew$1('<path d="M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9 9 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9 9 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75" />');
2857
+ });
2381
2858
  },
2382
2859
  DocumentMagnifyingGlass(unit, props) {
2383
- xnew$1.extend(SVGTemplate, props);
2384
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m5.231 13.481L15 17.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v16.5c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9m3.75 11.625a2.625 2.625 0 1 1-5.25 0a2.625 2.625 0 0 1 5.25 0" />');
2860
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2861
+ xnew$1((unit) => {
2862
+ xnew$1.extend(OutLineTemplate, props);
2863
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m5.231 13.481L15 17.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v16.5c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9m3.75 11.625a2.625 2.625 0 1 1-5.25 0a2.625 2.625 0 0 1 5.25 0" />');
2864
+ });
2385
2865
  },
2386
2866
  DocumentMinus(unit, props) {
2387
- xnew$1.extend(SVGTemplate, props);
2388
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2867
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2868
+ xnew$1((unit) => {
2869
+ xnew$1.extend(OutLineTemplate, props);
2870
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2871
+ });
2389
2872
  },
2390
2873
  DocumentPlus(unit, props) {
2391
- xnew$1.extend(SVGTemplate, props);
2392
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2874
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2875
+ xnew$1((unit) => {
2876
+ xnew$1.extend(OutLineTemplate, props);
2877
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2878
+ });
2393
2879
  },
2394
2880
  DocumentText(unit, props) {
2395
- xnew$1.extend(SVGTemplate, props);
2396
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2881
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2882
+ xnew$1((unit) => {
2883
+ xnew$1.extend(OutLineTemplate, props);
2884
+ xnew$1('<path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9" />');
2885
+ });
2397
2886
  },
2398
2887
  EllipsisHorizontal(unit, props) {
2399
- xnew$1.extend(SVGTemplate, props);
2400
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 12a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m6 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m6 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0" />');
2888
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2889
+ xnew$1((unit) => {
2890
+ xnew$1.extend(OutLineTemplate, props);
2891
+ xnew$1('<path d="M6.75 12a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m6 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m6 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0" />');
2892
+ });
2401
2893
  },
2402
2894
  EllipsisHorizontalCircle(unit, props) {
2403
- xnew$1.extend(SVGTemplate, props);
2404
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.625 12a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2895
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2896
+ xnew$1((unit) => {
2897
+ xnew$1.extend(OutLineTemplate, props);
2898
+ xnew$1('<path d="M8.625 12a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2899
+ });
2405
2900
  },
2406
2901
  EllipsisVertical(unit, props) {
2407
- xnew$1.extend(SVGTemplate, props);
2408
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 6.75a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 6a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 6a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5" />');
2902
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2903
+ xnew$1((unit) => {
2904
+ xnew$1.extend(OutLineTemplate, props);
2905
+ xnew$1('<path d="M12 6.75a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 6a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 6a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5" />');
2906
+ });
2409
2907
  },
2410
2908
  Envelope(unit, props) {
2411
- xnew$1.extend(SVGTemplate, props);
2412
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75" />');
2909
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2910
+ xnew$1((unit) => {
2911
+ xnew$1.extend(OutLineTemplate, props);
2912
+ xnew$1('<path d="M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75" />');
2913
+ });
2413
2914
  },
2414
2915
  EnvelopeOpen(unit, props) {
2415
- xnew$1.extend(SVGTemplate, props);
2416
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 9v.906a2.25 2.25 0 0 1-1.183 1.981l-6.478 3.488M2.25 9v.906a2.25 2.25 0 0 0 1.183 1.981l6.478 3.488m8.839 2.51l-4.66-2.51m0 0l-1.023-.55a2.25 2.25 0 0 0-2.134 0l-1.022.55m0 0l-4.661 2.51m16.5 1.615a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V8.844a2.25 2.25 0 0 1 1.183-1.981l7.5-4.039a2.25 2.25 0 0 1 2.134 0l7.5 4.039a2.25 2.25 0 0 1 1.183 1.98z" />');
2916
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2917
+ xnew$1((unit) => {
2918
+ xnew$1.extend(OutLineTemplate, props);
2919
+ xnew$1('<path d="M21.75 9v.906a2.25 2.25 0 0 1-1.183 1.981l-6.478 3.488M2.25 9v.906a2.25 2.25 0 0 0 1.183 1.981l6.478 3.488m8.839 2.51l-4.66-2.51m0 0l-1.023-.55a2.25 2.25 0 0 0-2.134 0l-1.022.55m0 0l-4.661 2.51m16.5 1.615a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V8.844a2.25 2.25 0 0 1 1.183-1.981l7.5-4.039a2.25 2.25 0 0 1 2.134 0l7.5 4.039a2.25 2.25 0 0 1 1.183 1.98z" />');
2920
+ });
2417
2921
  },
2418
2922
  Equals(unit, props) {
2419
- xnew$1.extend(SVGTemplate, props);
2420
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.499 8.248h15m-15 7.501h15" />');
2923
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2924
+ xnew$1((unit) => {
2925
+ xnew$1.extend(OutLineTemplate, props);
2926
+ xnew$1('<path d="M4.499 8.248h15m-15 7.501h15" />');
2927
+ });
2421
2928
  },
2422
2929
  ExclamationCircle(unit, props) {
2423
- xnew$1.extend(SVGTemplate, props);
2424
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m9-.75a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9 3.75h.008v.008H12z" />');
2930
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2931
+ xnew$1((unit) => {
2932
+ xnew$1.extend(OutLineTemplate, props);
2933
+ xnew$1('<path d="M12 9v3.75m9-.75a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9 3.75h.008v.008H12z" />');
2934
+ });
2425
2935
  },
2426
2936
  ExclamationTriangle(unit, props) {
2427
- xnew$1.extend(SVGTemplate, props);
2428
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0zM12 15.75h.007v.008H12z" />');
2937
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2938
+ xnew$1((unit) => {
2939
+ xnew$1.extend(OutLineTemplate, props);
2940
+ xnew$1('<path d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0zM12 15.75h.007v.008H12z" />');
2941
+ });
2429
2942
  },
2430
2943
  Eye(unit, props) {
2431
- xnew$1.extend(SVGTemplate, props);
2432
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.036 12.322a1 1 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178c.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178" />');
2433
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
2944
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2945
+ xnew$1((unit) => {
2946
+ xnew$1.extend(OutLineTemplate, props);
2947
+ xnew$1('<path d="M2.036 12.322a1 1 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178c.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178" />');
2948
+ xnew$1('<path d="M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
2949
+ });
2434
2950
  },
2435
2951
  EyeDropper(unit, props) {
2436
- xnew$1.extend(SVGTemplate, props);
2437
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m15 11.25l1.5 1.5l.75-.75V8.758l2.276-.61a3 3 0 1 0-3.675-3.675l-.61 2.277H12l-.75.75l1.5 1.5M15 11.25l-8.47 8.47c-.34.34-.8.53-1.28.53s-.94.19-1.28.53l-.97.97l-.75-.75l.97-.97c.34-.34.53-.8.53-1.28s.19-.94.53-1.28L12.75 9M15 11.25L12.75 9" />');
2952
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2953
+ xnew$1((unit) => {
2954
+ xnew$1.extend(OutLineTemplate, props);
2955
+ xnew$1('<path d="m15 11.25l1.5 1.5l.75-.75V8.758l2.276-.61a3 3 0 1 0-3.675-3.675l-.61 2.277H12l-.75.75l1.5 1.5M15 11.25l-8.47 8.47c-.34.34-.8.53-1.28.53s-.94.19-1.28.53l-.97.97l-.75-.75l.97-.97c.34-.34.53-.8.53-1.28s.19-.94.53-1.28L12.75 9M15 11.25L12.75 9" />');
2956
+ });
2438
2957
  },
2439
2958
  EyeSlash(unit, props) {
2440
- xnew$1.extend(SVGTemplate, props);
2441
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.98 8.223A10.5 10.5 0 0 0 1.934 12c1.292 4.339 5.31 7.5 10.066 7.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.45 10.45 0 0 1 12 4.5c4.756 0 8.773 3.162 10.065 7.499a10.52 10.52 0 0 1-4.293 5.773M6.228 6.228L3 3m3.228 3.228l3.65 3.65m7.894 7.894L21 21m-3.228-3.228l-3.65-3.65m0 0a3 3 0 1 0-4.243-4.243m4.242 4.242L9.88 9.88" />');
2959
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2960
+ xnew$1((unit) => {
2961
+ xnew$1.extend(OutLineTemplate, props);
2962
+ xnew$1('<path d="M3.98 8.223A10.5 10.5 0 0 0 1.934 12c1.292 4.339 5.31 7.5 10.066 7.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.45 10.45 0 0 1 12 4.5c4.756 0 8.773 3.162 10.065 7.499a10.52 10.52 0 0 1-4.293 5.773M6.228 6.228L3 3m3.228 3.228l3.65 3.65m7.894 7.894L21 21m-3.228-3.228l-3.65-3.65m0 0a3 3 0 1 0-4.243-4.243m4.242 4.242L9.88 9.88" />');
2963
+ });
2442
2964
  },
2443
2965
  FaceFrown(unit, props) {
2444
- xnew$1.extend(SVGTemplate, props);
2445
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.182 16.318A4.5 4.5 0 0 0 12.016 15a4.5 4.5 0 0 0-3.198 1.318M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0M9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75S9.168 9 9.375 9s.375.336.375.75m-.375 0h.008v.015h-.008zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75s.168-.75.375-.75s.375.336.375.75m-.375 0h.008v.015h-.008z" />');
2966
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2967
+ xnew$1((unit) => {
2968
+ xnew$1.extend(OutLineTemplate, props);
2969
+ xnew$1('<path d="M15.182 16.318A4.5 4.5 0 0 0 12.016 15a4.5 4.5 0 0 0-3.198 1.318M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0M9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75S9.168 9 9.375 9s.375.336.375.75m-.375 0h.008v.015h-.008zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75s.168-.75.375-.75s.375.336.375.75m-.375 0h.008v.015h-.008z" />');
2970
+ });
2446
2971
  },
2447
2972
  FaceSmile(unit, props) {
2448
- xnew$1.extend(SVGTemplate, props);
2449
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.182 15.182a4.5 4.5 0 0 1-6.364 0M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0M9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75S9.168 9 9.375 9s.375.336.375.75m-.375 0h.008v.015h-.008zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75s.168-.75.375-.75s.375.336.375.75m-.375 0h.008v.015h-.008z" />');
2973
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2974
+ xnew$1((unit) => {
2975
+ xnew$1.extend(OutLineTemplate, props);
2976
+ xnew$1('<path d="M15.182 15.182a4.5 4.5 0 0 1-6.364 0M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0M9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75S9.168 9 9.375 9s.375.336.375.75m-.375 0h.008v.015h-.008zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75s.168-.75.375-.75s.375.336.375.75m-.375 0h.008v.015h-.008z" />');
2977
+ });
2450
2978
  },
2451
2979
  Film(unit, props) {
2452
- xnew$1.extend(SVGTemplate, props);
2453
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h1.5C5.496 19.5 6 18.996 6 18.375m-3.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-1.5A1.125 1.125 0 0 1 18 18.375M20.625 4.5H3.375m17.25 0c.621 0 1.125.504 1.125 1.125M20.625 4.5h-1.5C18.504 4.5 18 5.004 18 5.625m3.75 0v1.5c0 .621-.504 1.125-1.125 1.125M3.375 4.5c-.621 0-1.125.504-1.125 1.125M3.375 4.5h1.5C5.496 4.5 6 5.004 6 5.625m-3.75 0v1.5c0 .621.504 1.125 1.125 1.125m0 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m1.5-3.75C5.496 8.25 6 7.746 6 7.125v-1.5M4.875 8.25C5.496 8.25 6 8.754 6 9.375v1.5m0-5.25v5.25m0-5.25C6 5.004 6.504 4.5 7.125 4.5h9.75c.621 0 1.125.504 1.125 1.125m1.125 2.625h1.5m-1.5 0A1.125 1.125 0 0 1 18 7.125v-1.5m1.125 2.625c-.621 0-1.125.504-1.125 1.125v1.5m2.625-2.625c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125M18 5.625v5.25M7.125 12h9.75m-9.75 0A1.125 1.125 0 0 1 6 10.875M7.125 12C6.504 12 6 12.504 6 13.125m0-2.25C6 11.496 5.496 12 4.875 12M18 10.875c0 .621-.504 1.125-1.125 1.125M18 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m-12 5.25v-5.25m0 5.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125m-12 0v-1.5c0-.621-.504-1.125-1.125-1.125M18 18.375v-5.25m0 5.25v-1.5c0-.621.504-1.125 1.125-1.125M18 13.125v1.5c0 .621.504 1.125 1.125 1.125M18 13.125c0-.621.504-1.125 1.125-1.125M6 13.125v1.5c0 .621-.504 1.125-1.125 1.125M6 13.125C6 12.504 5.496 12 4.875 12m-1.5 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M19.125 12h1.5m0 0c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h1.5m14.25 0h1.5" />');
2980
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2981
+ xnew$1((unit) => {
2982
+ xnew$1.extend(OutLineTemplate, props);
2983
+ xnew$1('<path d="M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h1.5C5.496 19.5 6 18.996 6 18.375m-3.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-1.5A1.125 1.125 0 0 1 18 18.375M20.625 4.5H3.375m17.25 0c.621 0 1.125.504 1.125 1.125M20.625 4.5h-1.5C18.504 4.5 18 5.004 18 5.625m3.75 0v1.5c0 .621-.504 1.125-1.125 1.125M3.375 4.5c-.621 0-1.125.504-1.125 1.125M3.375 4.5h1.5C5.496 4.5 6 5.004 6 5.625m-3.75 0v1.5c0 .621.504 1.125 1.125 1.125m0 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m1.5-3.75C5.496 8.25 6 7.746 6 7.125v-1.5M4.875 8.25C5.496 8.25 6 8.754 6 9.375v1.5m0-5.25v5.25m0-5.25C6 5.004 6.504 4.5 7.125 4.5h9.75c.621 0 1.125.504 1.125 1.125m1.125 2.625h1.5m-1.5 0A1.125 1.125 0 0 1 18 7.125v-1.5m1.125 2.625c-.621 0-1.125.504-1.125 1.125v1.5m2.625-2.625c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125M18 5.625v5.25M7.125 12h9.75m-9.75 0A1.125 1.125 0 0 1 6 10.875M7.125 12C6.504 12 6 12.504 6 13.125m0-2.25C6 11.496 5.496 12 4.875 12M18 10.875c0 .621-.504 1.125-1.125 1.125M18 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m-12 5.25v-5.25m0 5.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125m-12 0v-1.5c0-.621-.504-1.125-1.125-1.125M18 18.375v-5.25m0 5.25v-1.5c0-.621.504-1.125 1.125-1.125M18 13.125v1.5c0 .621.504 1.125 1.125 1.125M18 13.125c0-.621.504-1.125 1.125-1.125M6 13.125v1.5c0 .621-.504 1.125-1.125 1.125M6 13.125C6 12.504 5.496 12 4.875 12m-1.5 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M19.125 12h1.5m0 0c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h1.5m14.25 0h1.5" />');
2984
+ });
2454
2985
  },
2455
2986
  FingerPrint(unit, props) {
2456
- xnew$1.extend(SVGTemplate, props);
2457
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.864 4.243A7.5 7.5 0 0 1 19.5 10.5c0 2.92-.556 5.709-1.568 8.269M5.742 6.364A7.47 7.47 0 0 0 4.5 10.5a7.46 7.46 0 0 1-1.15 3.993m1.989 3.559A11.2 11.2 0 0 0 8.25 10.5a3.75 3.75 0 1 1 7.5 0q0 .79-.064 1.565M12 10.5a14.94 14.94 0 0 1-3.6 9.75m6.633-4.596a18.7 18.7 0 0 1-2.485 5.33" />');
2987
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2988
+ xnew$1((unit) => {
2989
+ xnew$1.extend(OutLineTemplate, props);
2990
+ xnew$1('<path d="M7.864 4.243A7.5 7.5 0 0 1 19.5 10.5c0 2.92-.556 5.709-1.568 8.269M5.742 6.364A7.47 7.47 0 0 0 4.5 10.5a7.46 7.46 0 0 1-1.15 3.993m1.989 3.559A11.2 11.2 0 0 0 8.25 10.5a3.75 3.75 0 1 1 7.5 0q0 .79-.064 1.565M12 10.5a14.94 14.94 0 0 1-3.6 9.75m6.633-4.596a18.7 18.7 0 0 1-2.485 5.33" />');
2991
+ });
2458
2992
  },
2459
2993
  Fire(unit, props) {
2460
- xnew$1.extend(SVGTemplate, props);
2461
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.362 5.214A8.252 8.252 0 0 1 12 21A8.25 8.25 0 0 1 6.038 7.047A8.3 8.3 0 0 0 9 9.601a8.98 8.98 0 0 1 3.361-6.867a8.2 8.2 0 0 0 3 2.48" />');
2462
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 18a3.75 3.75 0 0 0 .495-7.468a6 6 0 0 0-1.925 3.547a6 6 0 0 1-2.133-1.001A3.75 3.75 0 0 0 12 18" />');
2994
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
2995
+ xnew$1((unit) => {
2996
+ xnew$1.extend(OutLineTemplate, props);
2997
+ xnew$1('<path d="M15.362 5.214A8.252 8.252 0 0 1 12 21A8.25 8.25 0 0 1 6.038 7.047A8.3 8.3 0 0 0 9 9.601a8.98 8.98 0 0 1 3.361-6.867a8.2 8.2 0 0 0 3 2.48" />');
2998
+ xnew$1('<path d="M12 18a3.75 3.75 0 0 0 .495-7.468a6 6 0 0 0-1.925 3.547a6 6 0 0 1-2.133-1.001A3.75 3.75 0 0 0 12 18" />');
2999
+ });
2463
3000
  },
2464
3001
  Flag(unit, props) {
2465
- xnew$1.extend(SVGTemplate, props);
2466
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 3v1.5M3 21v-6m0 0l2.77-.693a9 9 0 0 1 6.208.682l.108.054a9 9 0 0 0 6.086.71l3.114-.732a48.5 48.5 0 0 1-.005-10.499l-3.11.732a9 9 0 0 1-6.085-.711l-.108-.054a9 9 0 0 0-6.208-.682L3 4.5M3 15V4.5" />');
3002
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3003
+ xnew$1((unit) => {
3004
+ xnew$1.extend(OutLineTemplate, props);
3005
+ xnew$1('<path d="M3 3v1.5M3 21v-6m0 0l2.77-.693a9 9 0 0 1 6.208.682l.108.054a9 9 0 0 0 6.086.71l3.114-.732a48.5 48.5 0 0 1-.005-10.499l-3.11.732a9 9 0 0 1-6.085-.711l-.108-.054a9 9 0 0 0-6.208-.682L3 4.5M3 15V4.5" />');
3006
+ });
2467
3007
  },
2468
3008
  Folder(unit, props) {
2469
- xnew$1.extend(SVGTemplate, props);
2470
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 12.75V12A2.25 2.25 0 0 1 4.5 9.75h15A2.25 2.25 0 0 1 21.75 12v.75m-8.69-6.44l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44" />');
3009
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3010
+ xnew$1((unit) => {
3011
+ xnew$1.extend(OutLineTemplate, props);
3012
+ xnew$1('<path d="M2.25 12.75V12A2.25 2.25 0 0 1 4.5 9.75h15A2.25 2.25 0 0 1 21.75 12v.75m-8.69-6.44l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44" />');
3013
+ });
2471
3014
  },
2472
3015
  FolderArrowDown(unit, props) {
2473
- xnew$1.extend(SVGTemplate, props);
2474
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m9 13.5l3 3m0 0l3-3m-3 3v-6m1.06-4.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44" />');
3016
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3017
+ xnew$1((unit) => {
3018
+ xnew$1.extend(OutLineTemplate, props);
3019
+ xnew$1('<path d="m9 13.5l3 3m0 0l3-3m-3 3v-6m1.06-4.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44" />');
3020
+ });
2475
3021
  },
2476
3022
  FolderMinus(unit, props) {
2477
- xnew$1.extend(SVGTemplate, props);
2478
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 13.5H9m4.06-7.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44" />');
3023
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3024
+ xnew$1((unit) => {
3025
+ xnew$1.extend(OutLineTemplate, props);
3026
+ xnew$1('<path d="M15 13.5H9m4.06-7.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44" />');
3027
+ });
2479
3028
  },
2480
3029
  FolderOpen(unit, props) {
2481
- xnew$1.extend(SVGTemplate, props);
2482
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 9.776q.168-.026.344-.026h15.812q.176 0 .344.026m-16.5 0a2.25 2.25 0 0 0-1.883 2.542l.857 6a2.25 2.25 0 0 0 2.227 1.932H19.05a2.25 2.25 0 0 0 2.227-1.932l.857-6a2.25 2.25 0 0 0-1.883-2.542m-16.5 0V6A2.25 2.25 0 0 1 6 3.75h3.879a1.5 1.5 0 0 1 1.06.44l2.122 2.12a1.5 1.5 0 0 0 1.06.44H18A2.25 2.25 0 0 1 20.25 9v.776" />');
3030
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3031
+ xnew$1((unit) => {
3032
+ xnew$1.extend(OutLineTemplate, props);
3033
+ xnew$1('<path d="M3.75 9.776q.168-.026.344-.026h15.812q.176 0 .344.026m-16.5 0a2.25 2.25 0 0 0-1.883 2.542l.857 6a2.25 2.25 0 0 0 2.227 1.932H19.05a2.25 2.25 0 0 0 2.227-1.932l.857-6a2.25 2.25 0 0 0-1.883-2.542m-16.5 0V6A2.25 2.25 0 0 1 6 3.75h3.879a1.5 1.5 0 0 1 1.06.44l2.122 2.12a1.5 1.5 0 0 0 1.06.44H18A2.25 2.25 0 0 1 20.25 9v.776" />');
3034
+ });
2483
3035
  },
2484
3036
  FolderPlus(unit, props) {
2485
- xnew$1.extend(SVGTemplate, props);
2486
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 10.5v6m3-3H9m4.06-7.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44" />');
3037
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3038
+ xnew$1((unit) => {
3039
+ xnew$1.extend(OutLineTemplate, props);
3040
+ xnew$1('<path d="M12 10.5v6m3-3H9m4.06-7.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44" />');
3041
+ });
2487
3042
  },
2488
3043
  Forward(unit, props) {
2489
- xnew$1.extend(SVGTemplate, props);
2490
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 8.689c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811zm9.75 0c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061a1.125 1.125 0 0 1-1.683-.977z" />');
3044
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3045
+ xnew$1((unit) => {
3046
+ xnew$1.extend(OutLineTemplate, props);
3047
+ xnew$1('<path d="M3 8.689c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811zm9.75 0c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061a1.125 1.125 0 0 1-1.683-.977z" />');
3048
+ });
2491
3049
  },
2492
3050
  Funnel(unit, props) {
2493
- xnew$1.extend(SVGTemplate, props);
2494
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 3c2.755 0 5.455.232 8.083.678c.533.09.917.556.917 1.096v1.044a2.25 2.25 0 0 1-.659 1.591l-5.432 5.432a2.25 2.25 0 0 0-.659 1.591v2.927a2.25 2.25 0 0 1-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 0 0-.659-1.591L3.659 7.409A2.25 2.25 0 0 1 3 5.818V4.774c0-.54.384-1.006.917-1.096A48.3 48.3 0 0 1 12 3" />');
3051
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3052
+ xnew$1((unit) => {
3053
+ xnew$1.extend(OutLineTemplate, props);
3054
+ xnew$1('<path d="M12 3c2.755 0 5.455.232 8.083.678c.533.09.917.556.917 1.096v1.044a2.25 2.25 0 0 1-.659 1.591l-5.432 5.432a2.25 2.25 0 0 0-.659 1.591v2.927a2.25 2.25 0 0 1-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 0 0-.659-1.591L3.659 7.409A2.25 2.25 0 0 1 3 5.818V4.774c0-.54.384-1.006.917-1.096A48.3 48.3 0 0 1 12 3" />');
3055
+ });
2495
3056
  },
2496
3057
  Gif(unit, props) {
2497
- xnew$1.extend(SVGTemplate, props);
2498
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12.75 8.25v7.5m6-7.5h-3V12m0 0v3.75m0-3.75H18M9.75 9.348c-1.03-1.464-2.698-1.464-3.728 0c-1.03 1.465-1.03 3.84 0 5.304s2.699 1.464 3.728 0V12h-1.5M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5" />');
3058
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3059
+ xnew$1((unit) => {
3060
+ xnew$1.extend(OutLineTemplate, props);
3061
+ xnew$1('<path d="M12.75 8.25v7.5m6-7.5h-3V12m0 0v3.75m0-3.75H18M9.75 9.348c-1.03-1.464-2.698-1.464-3.728 0c-1.03 1.465-1.03 3.84 0 5.304s2.699 1.464 3.728 0V12h-1.5M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5" />');
3062
+ });
2499
3063
  },
2500
3064
  Gift(unit, props) {
2501
- xnew$1.extend(SVGTemplate, props);
2502
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M20.625 11.505v8.25a1.5 1.5 0 0 1-1.5 1.5H4.875a1.5 1.5 0 0 1-1.5-1.5v-8.25m8.25-6.375A2.625 2.625 0 1 0 9 7.755h2.625m0-2.625v2.625m0-2.625a2.625 2.625 0 1 1 2.625 2.625h-2.625m0 0v13.5M3 11.505h18c.621 0 1.125-.504 1.125-1.125v-1.5c0-.622-.504-1.125-1.125-1.125H3c-.621 0-1.125.503-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125" />');
3065
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3066
+ xnew$1((unit) => {
3067
+ xnew$1.extend(OutLineTemplate, props);
3068
+ xnew$1('<path d="M20.625 11.505v8.25a1.5 1.5 0 0 1-1.5 1.5H4.875a1.5 1.5 0 0 1-1.5-1.5v-8.25m8.25-6.375A2.625 2.625 0 1 0 9 7.755h2.625m0-2.625v2.625m0-2.625a2.625 2.625 0 1 1 2.625 2.625h-2.625m0 0v13.5M3 11.505h18c.621 0 1.125-.504 1.125-1.125v-1.5c0-.622-.504-1.125-1.125-1.125H3c-.621 0-1.125.503-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125" />');
3069
+ });
2503
3070
  },
2504
3071
  GiftTop(unit, props) {
2505
- xnew$1.extend(SVGTemplate, props);
2506
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 3.75v16.5M2.25 12h19.5M6.375 17.25a4.875 4.875 0 0 0 4.875-4.875V12m6.375 5.25a4.875 4.875 0 0 1-4.875-4.875V12m-9 8.25h16.5a1.5 1.5 0 0 0 1.5-1.5V5.25a1.5 1.5 0 0 0-1.5-1.5H3.75a1.5 1.5 0 0 0-1.5 1.5v13.5a1.5 1.5 0 0 0 1.5 1.5m12.621-9.44c-1.409 1.41-4.242 1.061-4.242 1.061s-.349-2.833 1.06-4.242a2.25 2.25 0 0 1 3.182 3.182M10.773 7.63c1.409 1.409 1.06 4.242 1.06 4.242S9 12.22 7.592 10.811a2.25 2.25 0 1 1 3.182-3.182" />');
3072
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3073
+ xnew$1((unit) => {
3074
+ xnew$1.extend(OutLineTemplate, props);
3075
+ xnew$1('<path d="M12 3.75v16.5M2.25 12h19.5M6.375 17.25a4.875 4.875 0 0 0 4.875-4.875V12m6.375 5.25a4.875 4.875 0 0 1-4.875-4.875V12m-9 8.25h16.5a1.5 1.5 0 0 0 1.5-1.5V5.25a1.5 1.5 0 0 0-1.5-1.5H3.75a1.5 1.5 0 0 0-1.5 1.5v13.5a1.5 1.5 0 0 0 1.5 1.5m12.621-9.44c-1.409 1.41-4.242 1.061-4.242 1.061s-.349-2.833 1.06-4.242a2.25 2.25 0 0 1 3.182 3.182M10.773 7.63c1.409 1.409 1.06 4.242 1.06 4.242S9 12.22 7.592 10.811a2.25 2.25 0 1 1 3.182-3.182" />');
3076
+ });
2507
3077
  },
2508
3078
  GlobeAlt(unit, props) {
2509
- xnew$1.extend(SVGTemplate, props);
2510
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a9 9 0 0 1 7.843 4.582M12 3a9 9 0 0 0-7.843 4.582m15.686 0A11.95 11.95 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.96 8.96 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.9 17.9 0 0 1 12 16.5a17.9 17.9 0 0 1-8.716-2.247m0 0A9 9 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418" />');
3079
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3080
+ xnew$1((unit) => {
3081
+ xnew$1.extend(OutLineTemplate, props);
3082
+ xnew$1('<path d="M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a9 9 0 0 1 7.843 4.582M12 3a9 9 0 0 0-7.843 4.582m15.686 0A11.95 11.95 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.96 8.96 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.9 17.9 0 0 1 12 16.5a17.9 17.9 0 0 1-8.716-2.247m0 0A9 9 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418" />');
3083
+ });
2511
3084
  },
2512
3085
  GlobeAmericas(unit, props) {
2513
- xnew$1.extend(SVGTemplate, props);
2514
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m6.115 5.19l.319 1.913A6 6 0 0 0 8.11 10.36L9.75 12l-.387.775c-.217.433-.132.956.21 1.298l1.348 1.348c.21.21.329.497.329.795v1.089c0 .426.24.815.622 1.006l.153.076c.433.217.956.132 1.298-.21l.723-.723a8.7 8.7 0 0 0 2.288-4.042a1.09 1.09 0 0 0-.358-1.099l-1.33-1.108a1.12 1.12 0 0 0-.905-.245l-1.17.195a1.13 1.13 0 0 1-.98-.314l-.295-.295a1.125 1.125 0 0 1 0-1.591l.13-.132a1.125 1.125 0 0 1 1.3-.21l.603.302a.809.809 0 0 0 1.086-1.086L14.25 7.5l1.256-.837a4.5 4.5 0 0 0 1.528-1.732l.146-.292M6.115 5.19a9 9 0 1 0 11.065-.55m-11.065.55A8.97 8.97 0 0 1 12 3c1.929 0 3.716.607 5.18 1.64" />');
3086
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3087
+ xnew$1((unit) => {
3088
+ xnew$1.extend(OutLineTemplate, props);
3089
+ xnew$1('<path d="m6.115 5.19l.319 1.913A6 6 0 0 0 8.11 10.36L9.75 12l-.387.775c-.217.433-.132.956.21 1.298l1.348 1.348c.21.21.329.497.329.795v1.089c0 .426.24.815.622 1.006l.153.076c.433.217.956.132 1.298-.21l.723-.723a8.7 8.7 0 0 0 2.288-4.042a1.09 1.09 0 0 0-.358-1.099l-1.33-1.108a1.12 1.12 0 0 0-.905-.245l-1.17.195a1.13 1.13 0 0 1-.98-.314l-.295-.295a1.125 1.125 0 0 1 0-1.591l.13-.132a1.125 1.125 0 0 1 1.3-.21l.603.302a.809.809 0 0 0 1.086-1.086L14.25 7.5l1.256-.837a4.5 4.5 0 0 0 1.528-1.732l.146-.292M6.115 5.19a9 9 0 1 0 11.065-.55m-11.065.55A8.97 8.97 0 0 1 12 3c1.929 0 3.716.607 5.18 1.64" />');
3090
+ });
2515
3091
  },
2516
3092
  GlobeAsiaAustralia(unit, props) {
2517
- xnew$1.extend(SVGTemplate, props);
2518
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12.75 3.03v.568c0 .334.148.65.405.864l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 0 1-1.161.886l-.143.048a1.107 1.107 0 0 0-.57 1.664a1.108 1.108 0 0 1-.427 1.605L9 13.125l.423 1.059a.956.956 0 0 1-1.652.928l-.679-.906a1.125 1.125 0 0 0-1.906.172L4.5 15.75l-.612.153M12.75 3.031a9 9 0 0 0-8.862 12.872M12.75 3.031a9 9 0 0 1 6.69 14.036m0 0l-.177-.529A2.25 2.25 0 0 0 17.128 15H16.5l-.324-.324a1.453 1.453 0 0 0-2.328.377l-.036.073a1.6 1.6 0 0 1-.982.816l-.99.282c-.55.157-.894.702-.8 1.267l.073.438c.08.474.49.821.97.821c.846 0 1.598.542 1.865 1.345l.215.643m5.276-3.67a9 9 0 0 1-5.276 3.67m0 0a9 9 0 0 1-10.275-4.835M15.75 9c0 .896-.393 1.7-1.016 2.25" />');
3093
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3094
+ xnew$1((unit) => {
3095
+ xnew$1.extend(OutLineTemplate, props);
3096
+ xnew$1('<path d="M12.75 3.03v.568c0 .334.148.65.405.864l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 0 1-1.161.886l-.143.048a1.107 1.107 0 0 0-.57 1.664a1.108 1.108 0 0 1-.427 1.605L9 13.125l.423 1.059a.956.956 0 0 1-1.652.928l-.679-.906a1.125 1.125 0 0 0-1.906.172L4.5 15.75l-.612.153M12.75 3.031a9 9 0 0 0-8.862 12.872M12.75 3.031a9 9 0 0 1 6.69 14.036m0 0l-.177-.529A2.25 2.25 0 0 0 17.128 15H16.5l-.324-.324a1.453 1.453 0 0 0-2.328.377l-.036.073a1.6 1.6 0 0 1-.982.816l-.99.282c-.55.157-.894.702-.8 1.267l.073.438c.08.474.49.821.97.821c.846 0 1.598.542 1.865 1.345l.215.643m5.276-3.67a9 9 0 0 1-5.276 3.67m0 0a9 9 0 0 1-10.275-4.835M15.75 9c0 .896-.393 1.7-1.016 2.25" />');
3097
+ });
2519
3098
  },
2520
3099
  GlobeEuropeAfrica(unit, props) {
2521
- xnew$1.extend(SVGTemplate, props);
2522
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m20.893 13.393l-1.135-1.135a2.3 2.3 0 0 1-.421-.585l-1.08-2.16a.414.414 0 0 0-.663-.107a.83.83 0 0 1-.812.21l-1.273-.363a.89.89 0 0 0-.738 1.595l.587.39c.59.395.674 1.23.172 1.732l-.2.2c-.212.212-.33.498-.33.796v.41c0 .409-.11.809-.32 1.158l-1.315 2.191a2.11 2.11 0 0 1-1.81 1.025a1.055 1.055 0 0 1-1.055-1.055v-1.172c0-.92-.56-1.747-1.414-2.089l-.655-.261a2.25 2.25 0 0 1-1.383-2.46l.007-.042a2.3 2.3 0 0 1 .29-.787l.09-.15a2.25 2.25 0 0 1 2.37-1.048l1.178.236a1.125 1.125 0 0 0 1.302-.795l.208-.73a1.125 1.125 0 0 0-.578-1.315l-.665-.332l-.091.091a2.25 2.25 0 0 1-1.591.659h-.18a.94.94 0 0 0-.662.274a.931.931 0 0 1-1.458-1.137l1.411-2.353a2.3 2.3 0 0 0 .286-.76m11.928 9.869Q20.999 12.71 21 12A9 9 0 0 0 8.965 3.525m11.928 9.868A9 9 0 1 1 8.965 3.525" />');
3100
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3101
+ xnew$1((unit) => {
3102
+ xnew$1.extend(OutLineTemplate, props);
3103
+ xnew$1('<path d="m20.893 13.393l-1.135-1.135a2.3 2.3 0 0 1-.421-.585l-1.08-2.16a.414.414 0 0 0-.663-.107a.83.83 0 0 1-.812.21l-1.273-.363a.89.89 0 0 0-.738 1.595l.587.39c.59.395.674 1.23.172 1.732l-.2.2c-.212.212-.33.498-.33.796v.41c0 .409-.11.809-.32 1.158l-1.315 2.191a2.11 2.11 0 0 1-1.81 1.025a1.055 1.055 0 0 1-1.055-1.055v-1.172c0-.92-.56-1.747-1.414-2.089l-.655-.261a2.25 2.25 0 0 1-1.383-2.46l.007-.042a2.3 2.3 0 0 1 .29-.787l.09-.15a2.25 2.25 0 0 1 2.37-1.048l1.178.236a1.125 1.125 0 0 0 1.302-.795l.208-.73a1.125 1.125 0 0 0-.578-1.315l-.665-.332l-.091.091a2.25 2.25 0 0 1-1.591.659h-.18a.94.94 0 0 0-.662.274a.931.931 0 0 1-1.458-1.137l1.411-2.353a2.3 2.3 0 0 0 .286-.76m11.928 9.869Q20.999 12.71 21 12A9 9 0 0 0 8.965 3.525m11.928 9.868A9 9 0 1 1 8.965 3.525" />');
3104
+ });
2523
3105
  },
2524
3106
  H1(unit, props) {
2525
- xnew$1.extend(SVGTemplate, props);
2526
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.243 4.493v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501m4.501-8.627l2.25-1.5v10.126m0 0h-2.25m2.25 0h2.25" />');
3107
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3108
+ xnew$1((unit) => {
3109
+ xnew$1.extend(OutLineTemplate, props);
3110
+ xnew$1('<path d="M2.243 4.493v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501m4.501-8.627l2.25-1.5v10.126m0 0h-2.25m2.25 0h2.25" />');
3111
+ });
2527
3112
  },
2528
3113
  H2(unit, props) {
2529
- xnew$1.extend(SVGTemplate, props);
2530
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 19.5H16.5v-1.609a2.25 2.25 0 0 1 1.244-2.012l2.89-1.445c.651-.326 1.116-.955 1.116-1.683q0-.748-.118-1.463c-.135-.825-.835-1.422-1.668-1.489a15.2 15.2 0 0 0-3.464.12M2.243 4.492v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501" />');
3114
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3115
+ xnew$1((unit) => {
3116
+ xnew$1.extend(OutLineTemplate, props);
3117
+ xnew$1('<path d="M21.75 19.5H16.5v-1.609a2.25 2.25 0 0 1 1.244-2.012l2.89-1.445c.651-.326 1.116-.955 1.116-1.683q0-.748-.118-1.463c-.135-.825-.835-1.422-1.668-1.489a15.2 15.2 0 0 0-3.464.12M2.243 4.492v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501" />');
3118
+ });
2531
3119
  },
2532
3120
  H3(unit, props) {
2533
- xnew$1.extend(SVGTemplate, props);
2534
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M20.906 14.626a4.52 4.52 0 0 1 .738 3.603c-.155.695-.795 1.143-1.505 1.208a15.2 15.2 0 0 1-3.639-.104m4.406-4.707a4.52 4.52 0 0 0 .738-3.603c-.155-.696-.795-1.144-1.505-1.209a15.2 15.2 0 0 0-3.639.104m4.406 4.708H18M2.243 4.493v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501" />');
3121
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3122
+ xnew$1((unit) => {
3123
+ xnew$1.extend(OutLineTemplate, props);
3124
+ xnew$1('<path d="M20.906 14.626a4.52 4.52 0 0 1 .738 3.603c-.155.695-.795 1.143-1.505 1.208a15.2 15.2 0 0 1-3.639-.104m4.406-4.707a4.52 4.52 0 0 0 .738-3.603c-.155-.696-.795-1.144-1.505-1.209a15.2 15.2 0 0 0-3.639.104m4.406 4.708H18M2.243 4.493v7.5m0 0v7.502m0-7.501h10.5m0-7.5v7.5m0 0v7.501" />');
3125
+ });
2535
3126
  },
2536
3127
  HandRaised(unit, props) {
2537
- xnew$1.extend(SVGTemplate, props);
2538
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.05 4.575a1.575 1.575 0 1 0-3.15 0v3m3.15-3v-1.5a1.575 1.575 0 0 1 3.15 0v1.5m-3.15 0l.075 5.925m3.075.75V4.575m0 0a1.575 1.575 0 0 1 3.15 0V15M6.9 7.575a1.575 1.575 0 1 0-3.15 0v8.175a6.75 6.75 0 0 0 6.75 6.75h2.018a5.25 5.25 0 0 0 3.712-1.538l1.732-1.732a5.25 5.25 0 0 0 1.538-3.712l.003-2.024a.67.67 0 0 1 .198-.471a1.575 1.575 0 1 0-2.228-2.228a3.82 3.82 0 0 0-1.12 2.687M6.9 7.575V12m6.27 4.318A4.5 4.5 0 0 1 16.35 15m.002 0h-.002" />');
3128
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3129
+ xnew$1((unit) => {
3130
+ xnew$1.extend(OutLineTemplate, props);
3131
+ xnew$1('<path d="M10.05 4.575a1.575 1.575 0 1 0-3.15 0v3m3.15-3v-1.5a1.575 1.575 0 0 1 3.15 0v1.5m-3.15 0l.075 5.925m3.075.75V4.575m0 0a1.575 1.575 0 0 1 3.15 0V15M6.9 7.575a1.575 1.575 0 1 0-3.15 0v8.175a6.75 6.75 0 0 0 6.75 6.75h2.018a5.25 5.25 0 0 0 3.712-1.538l1.732-1.732a5.25 5.25 0 0 0 1.538-3.712l.003-2.024a.67.67 0 0 1 .198-.471a1.575 1.575 0 1 0-2.228-2.228a3.82 3.82 0 0 0-1.12 2.687M6.9 7.575V12m6.27 4.318A4.5 4.5 0 0 1 16.35 15m.002 0h-.002" />');
3132
+ });
2539
3133
  },
2540
3134
  HandThumbDown(unit, props) {
2541
- xnew$1.extend(SVGTemplate, props);
2542
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.498 15.25H4.372c-1.026 0-1.945-.694-2.054-1.715a12 12 0 0 1-.068-1.285c0-2.848.992-5.464 2.649-7.521C5.287 4.247 5.886 4 6.504 4h4.016a4.5 4.5 0 0 1 1.423.23l3.114 1.04a4.5 4.5 0 0 0 1.423.23h1.294M7.499 15.25c.618 0 .991.724.725 1.282A7.5 7.5 0 0 0 7.5 19.75A2.25 2.25 0 0 0 9.75 22a.75.75 0 0 0 .75-.75v-.633c0-.573.11-1.14.322-1.672c.304-.76.93-1.33 1.653-1.715a9 9 0 0 0 2.86-2.4c.498-.634 1.226-1.08 2.032-1.08h.384m-10.253 1.5H9.7m8.075-9.75q.015.075.05.148a8.95 8.95 0 0 1 .925 3.977a8.95 8.95 0 0 1-.999 4.125m.023-8.25c-.076-.365.183-.75.575-.75h.908c.889 0 1.713.518 1.972 1.368c.339 1.11.521 2.287.521 3.507c0 1.553-.295 3.036-.831 4.398c-.306.774-1.086 1.227-1.918 1.227h-1.053c-.472 0-.745-.556-.5-.96a9 9 0 0 0 .303-.54" />');
3135
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3136
+ xnew$1((unit) => {
3137
+ xnew$1.extend(OutLineTemplate, props);
3138
+ xnew$1('<path d="M7.498 15.25H4.372c-1.026 0-1.945-.694-2.054-1.715a12 12 0 0 1-.068-1.285c0-2.848.992-5.464 2.649-7.521C5.287 4.247 5.886 4 6.504 4h4.016a4.5 4.5 0 0 1 1.423.23l3.114 1.04a4.5 4.5 0 0 0 1.423.23h1.294M7.499 15.25c.618 0 .991.724.725 1.282A7.5 7.5 0 0 0 7.5 19.75A2.25 2.25 0 0 0 9.75 22a.75.75 0 0 0 .75-.75v-.633c0-.573.11-1.14.322-1.672c.304-.76.93-1.33 1.653-1.715a9 9 0 0 0 2.86-2.4c.498-.634 1.226-1.08 2.032-1.08h.384m-10.253 1.5H9.7m8.075-9.75q.015.075.05.148a8.95 8.95 0 0 1 .925 3.977a8.95 8.95 0 0 1-.999 4.125m.023-8.25c-.076-.365.183-.75.575-.75h.908c.889 0 1.713.518 1.972 1.368c.339 1.11.521 2.287.521 3.507c0 1.553-.295 3.036-.831 4.398c-.306.774-1.086 1.227-1.918 1.227h-1.053c-.472 0-.745-.556-.5-.96a9 9 0 0 0 .303-.54" />');
3139
+ });
2543
3140
  },
2544
3141
  HandThumbUp(unit, props) {
2545
- xnew$1.extend(SVGTemplate, props);
2546
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.633 10.25c.806 0 1.533-.446 2.031-1.08a9 9 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.5 4.5 0 0 0 .322-1.672V2.75a.75.75 0 0 1 .75-.75a2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218c-.266.558.107 1.282.725 1.282m0 0h3.126c1.026 0 1.945.694 2.054 1.715q.068.633.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H13.48a4.5 4.5 0 0 1-1.423-.23l-3.114-1.04a4.5 4.5 0 0 0-1.423-.23H5.904m10.598-9.75H14.25M5.904 18.5q.125.307.27.602c.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 0 1-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 9.953 4.167 9.5 5 9.5h1.053c.472 0 .745.556.5.96a8.96 8.96 0 0 0-1.302 4.665a9 9 0 0 0 .654 3.375" />');
3142
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3143
+ xnew$1((unit) => {
3144
+ xnew$1.extend(OutLineTemplate, props);
3145
+ xnew$1('<path d="M6.633 10.25c.806 0 1.533-.446 2.031-1.08a9 9 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.5 4.5 0 0 0 .322-1.672V2.75a.75.75 0 0 1 .75-.75a2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218c-.266.558.107 1.282.725 1.282m0 0h3.126c1.026 0 1.945.694 2.054 1.715q.068.633.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H13.48a4.5 4.5 0 0 1-1.423-.23l-3.114-1.04a4.5 4.5 0 0 0-1.423-.23H5.904m10.598-9.75H14.25M5.904 18.5q.125.307.27.602c.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 0 1-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 9.953 4.167 9.5 5 9.5h1.053c.472 0 .745.556.5.96a8.96 8.96 0 0 0-1.302 4.665a9 9 0 0 0 .654 3.375" />');
3146
+ });
2547
3147
  },
2548
3148
  Hashtag(unit, props) {
2549
- xnew$1.extend(SVGTemplate, props);
2550
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5l-3.9 19.5m-2.1-19.5l-3.9 19.5" />');
3149
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3150
+ xnew$1((unit) => {
3151
+ xnew$1.extend(OutLineTemplate, props);
3152
+ xnew$1('<path d="M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5l-3.9 19.5m-2.1-19.5l-3.9 19.5" />');
3153
+ });
2551
3154
  },
2552
3155
  Heart(unit, props) {
2553
- xnew$1.extend(SVGTemplate, props);
2554
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 8.25c0-2.485-2.099-4.5-4.687-4.5c-1.936 0-3.598 1.126-4.313 2.733c-.715-1.607-2.377-2.733-4.312-2.733C5.098 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12" />');
3156
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3157
+ xnew$1((unit) => {
3158
+ xnew$1.extend(OutLineTemplate, props);
3159
+ xnew$1('<path d="M21 8.25c0-2.485-2.099-4.5-4.687-4.5c-1.936 0-3.598 1.126-4.313 2.733c-.715-1.607-2.377-2.733-4.312-2.733C5.098 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12" />');
3160
+ });
2555
3161
  },
2556
3162
  Home(unit, props) {
2557
- xnew$1.extend(SVGTemplate, props);
2558
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m2.25 12l8.955-8.955a1.124 1.124 0 0 1 1.59 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25" />');
3163
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3164
+ xnew$1((unit) => {
3165
+ xnew$1.extend(OutLineTemplate, props);
3166
+ xnew$1('<path d="m2.25 12l8.955-8.955a1.124 1.124 0 0 1 1.59 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25" />');
3167
+ });
2559
3168
  },
2560
3169
  HomeModern(unit, props) {
2561
- xnew$1.extend(SVGTemplate, props);
2562
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 21v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21m0 0h4.5V3.545M12.75 21h7.5V10.75M2.25 21h1.5m18 0h-18M2.25 9l4.5-1.636M18.75 3l-1.5.545m0 6.205l3 1m1.5.5l-1.5-.5M6.75 7.364V3h-3v18m3-13.636l10.5-3.819" />');
3170
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3171
+ xnew$1((unit) => {
3172
+ xnew$1.extend(OutLineTemplate, props);
3173
+ xnew$1('<path d="M8.25 21v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21m0 0h4.5V3.545M12.75 21h7.5V10.75M2.25 21h1.5m18 0h-18M2.25 9l4.5-1.636M18.75 3l-1.5.545m0 6.205l3 1m1.5.5l-1.5-.5M6.75 7.364V3h-3v18m3-13.636l10.5-3.819" />');
3174
+ });
2563
3175
  },
2564
3176
  Identification(unit, props) {
2565
- xnew$1.extend(SVGTemplate, props);
2566
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 9h3.75M15 12h3.75M15 15h3.75M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5m6-10.125a1.875 1.875 0 1 1-3.75 0a1.875 1.875 0 0 1 3.75 0m1.294 6.336a6.7 6.7 0 0 1-3.17.789a6.7 6.7 0 0 1-3.168-.789a3.376 3.376 0 0 1 6.338 0" />');
3177
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3178
+ xnew$1((unit) => {
3179
+ xnew$1.extend(OutLineTemplate, props);
3180
+ xnew$1('<path d="M15 9h3.75M15 12h3.75M15 15h3.75M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5m6-10.125a1.875 1.875 0 1 1-3.75 0a1.875 1.875 0 0 1 3.75 0m1.294 6.336a6.7 6.7 0 0 1-3.17.789a6.7 6.7 0 0 1-3.168-.789a3.376 3.376 0 0 1 6.338 0" />');
3181
+ });
2567
3182
  },
2568
3183
  Inbox(unit, props) {
2569
- xnew$1.extend(SVGTemplate, props);
2570
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859m-19.5.338V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162q0-.338-.1-.661l-2.41-7.839a2.25 2.25 0 0 0-2.15-1.588H6.911a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.3 2.3 0 0 0-.1.661" />');
3184
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3185
+ xnew$1((unit) => {
3186
+ xnew$1.extend(OutLineTemplate, props);
3187
+ xnew$1('<path d="M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859m-19.5.338V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162q0-.338-.1-.661l-2.41-7.839a2.25 2.25 0 0 0-2.15-1.588H6.911a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.3 2.3 0 0 0-.1.661" />');
3188
+ });
2571
3189
  },
2572
3190
  InboxArrowDown(unit, props) {
2573
- xnew$1.extend(SVGTemplate, props);
2574
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 3.75H6.912a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.3 2.3 0 0 0-.1.661V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162q0-.338-.1-.661l-2.41-7.839a2.25 2.25 0 0 0-2.15-1.588H15M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859M12 3v8.25m0 0l-3-3m3 3l3-3" />');
3191
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3192
+ xnew$1((unit) => {
3193
+ xnew$1.extend(OutLineTemplate, props);
3194
+ xnew$1('<path d="M9 3.75H6.912a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.3 2.3 0 0 0-.1.661V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162q0-.338-.1-.661l-2.41-7.839a2.25 2.25 0 0 0-2.15-1.588H15M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859M12 3v8.25m0 0l-3-3m3 3l3-3" />');
3195
+ });
2575
3196
  },
2576
3197
  InboxStack(unit, props) {
2577
- xnew$1.extend(SVGTemplate, props);
2578
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m7.875 14.25l1.214 1.942a2.25 2.25 0 0 0 1.908 1.058h2.006c.776 0 1.497-.4 1.908-1.058l1.214-1.942M2.41 9h4.636a2.25 2.25 0 0 1 1.872 1.002l.164.246a2.25 2.25 0 0 0 1.872 1.002h2.092a2.25 2.25 0 0 0 1.872-1.002l.164-.246A2.25 2.25 0 0 1 16.954 9h4.636M2.41 9a2.3 2.3 0 0 0-.16.832V12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 12V9.832c0-.287-.055-.57-.16-.832M2.41 9a2.3 2.3 0 0 1 .382-.632l3.285-3.832a2.25 2.25 0 0 1 1.708-.786h8.43c.657 0 1.281.287 1.709.786l3.284 3.832c.163.19.291.404.382.632M4.5 20.25h15A2.25 2.25 0 0 0 21.75 18v-2.625c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125V18a2.25 2.25 0 0 0 2.25 2.25" />');
3198
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3199
+ xnew$1((unit) => {
3200
+ xnew$1.extend(OutLineTemplate, props);
3201
+ xnew$1('<path d="m7.875 14.25l1.214 1.942a2.25 2.25 0 0 0 1.908 1.058h2.006c.776 0 1.497-.4 1.908-1.058l1.214-1.942M2.41 9h4.636a2.25 2.25 0 0 1 1.872 1.002l.164.246a2.25 2.25 0 0 0 1.872 1.002h2.092a2.25 2.25 0 0 0 1.872-1.002l.164-.246A2.25 2.25 0 0 1 16.954 9h4.636M2.41 9a2.3 2.3 0 0 0-.16.832V12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 12V9.832c0-.287-.055-.57-.16-.832M2.41 9a2.3 2.3 0 0 1 .382-.632l3.285-3.832a2.25 2.25 0 0 1 1.708-.786h8.43c.657 0 1.281.287 1.709.786l3.284 3.832c.163.19.291.404.382.632M4.5 20.25h15A2.25 2.25 0 0 0 21.75 18v-2.625c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125V18a2.25 2.25 0 0 0 2.25 2.25" />');
3202
+ });
2579
3203
  },
2580
3204
  InformationCircle(unit, props) {
2581
- xnew$1.extend(SVGTemplate, props);
2582
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m11.25 11.25l.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9-3.75h.008v.008H12z" />');
3205
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3206
+ xnew$1((unit) => {
3207
+ xnew$1.extend(OutLineTemplate, props);
3208
+ xnew$1('<path d="m11.25 11.25l.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9-3.75h.008v.008H12z" />');
3209
+ });
2583
3210
  },
2584
3211
  Italic(unit, props) {
2585
- xnew$1.extend(SVGTemplate, props);
2586
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M5.248 20.246H9.05m0 0h3.696m-3.696 0l5.893-16.502m0 0h-3.697m3.697 0h3.803" />');
3212
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3213
+ xnew$1((unit) => {
3214
+ xnew$1.extend(OutLineTemplate, props);
3215
+ xnew$1('<path d="M5.248 20.246H9.05m0 0h3.696m-3.696 0l5.893-16.502m0 0h-3.697m3.697 0h3.803" />');
3216
+ });
2587
3217
  },
2588
3218
  Key(unit, props) {
2589
- xnew$1.extend(SVGTemplate, props);
2590
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 5.25a3 3 0 0 1 3 3m3 0a6 6 0 0 1-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v2.25H2.25v-2.818c0-.597.237-1.17.659-1.591l6.499-6.499c.404-.404.527-1 .43-1.563A6 6 0 1 1 21.75 8.25" />');
3219
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3220
+ xnew$1((unit) => {
3221
+ xnew$1.extend(OutLineTemplate, props);
3222
+ xnew$1('<path d="M15.75 5.25a3 3 0 0 1 3 3m3 0a6 6 0 0 1-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v2.25H2.25v-2.818c0-.597.237-1.17.659-1.591l6.499-6.499c.404-.404.527-1 .43-1.563A6 6 0 1 1 21.75 8.25" />');
3223
+ });
2591
3224
  },
2592
3225
  Language(unit, props) {
2593
- xnew$1.extend(SVGTemplate, props);
2594
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m10.5 21l5.25-11.25L21 21m-9-3h7.5M3 5.621a49 49 0 0 1 6-.371m0 0q1.681 0 3.334.114M9 5.25V3m3.334 2.364C11.176 10.658 7.69 15.08 3 17.502m9.334-12.138q1.344.092 2.666.257m-4.589 8.495a18 18 0 0 1-3.827-5.802" />');
3226
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3227
+ xnew$1((unit) => {
3228
+ xnew$1.extend(OutLineTemplate, props);
3229
+ xnew$1('<path d="m10.5 21l5.25-11.25L21 21m-9-3h7.5M3 5.621a49 49 0 0 1 6-.371m0 0q1.681 0 3.334.114M9 5.25V3m3.334 2.364C11.176 10.658 7.69 15.08 3 17.502m9.334-12.138q1.344.092 2.666.257m-4.589 8.495a18 18 0 0 1-3.827-5.802" />');
3230
+ });
2595
3231
  },
2596
3232
  Lifebuoy(unit, props) {
2597
- xnew$1.extend(SVGTemplate, props);
2598
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.712 4.33a9 9 0 0 1 1.652 1.306c.51.51.944 1.064 1.306 1.652M16.712 4.33l-3.448 4.138m3.448-4.138a9.01 9.01 0 0 0-9.424 0M19.67 7.288l-4.138 3.448m4.138-3.448a9.01 9.01 0 0 1 0 9.424m-4.138-5.976a3.7 3.7 0 0 0-.88-1.388a3.7 3.7 0 0 0-1.388-.88m2.268 2.268a3.77 3.77 0 0 1 0 2.528m-2.268-4.796a3.77 3.77 0 0 0-2.528 0m4.796 4.796a3.75 3.75 0 0 1-.88 1.388a3.7 3.7 0 0 1-1.388.88m2.268-2.268l4.138 3.448m0 0a9 9 0 0 1-1.306 1.652c-.51.51-1.064.944-1.652 1.306m0 0l-3.448-4.138m3.448 4.138a9.01 9.01 0 0 1-9.424 0m5.976-4.138a3.77 3.77 0 0 1-2.528 0m0 0a3.7 3.7 0 0 1-1.388-.88a3.7 3.7 0 0 1-.88-1.388m2.268 2.268L7.288 19.67m0 0a9 9 0 0 1-1.652-1.306a9 9 0 0 1-1.306-1.652m0 0l4.138-3.448M4.33 16.712a9.01 9.01 0 0 1 0-9.424m4.138 5.976a3.77 3.77 0 0 1 0-2.528m0 0c.181-.506.475-.982.88-1.388a3.7 3.7 0 0 1 1.388-.88m-2.268 2.268L4.33 7.288m6.406 1.18L7.288 4.33m0 0a9 9 0 0 0-1.652 1.306A9 9 0 0 0 4.33 7.288" />');
3233
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3234
+ xnew$1((unit) => {
3235
+ xnew$1.extend(OutLineTemplate, props);
3236
+ xnew$1('<path d="M16.712 4.33a9 9 0 0 1 1.652 1.306c.51.51.944 1.064 1.306 1.652M16.712 4.33l-3.448 4.138m3.448-4.138a9.01 9.01 0 0 0-9.424 0M19.67 7.288l-4.138 3.448m4.138-3.448a9.01 9.01 0 0 1 0 9.424m-4.138-5.976a3.7 3.7 0 0 0-.88-1.388a3.7 3.7 0 0 0-1.388-.88m2.268 2.268a3.77 3.77 0 0 1 0 2.528m-2.268-4.796a3.77 3.77 0 0 0-2.528 0m4.796 4.796a3.75 3.75 0 0 1-.88 1.388a3.7 3.7 0 0 1-1.388.88m2.268-2.268l4.138 3.448m0 0a9 9 0 0 1-1.306 1.652c-.51.51-1.064.944-1.652 1.306m0 0l-3.448-4.138m3.448 4.138a9.01 9.01 0 0 1-9.424 0m5.976-4.138a3.77 3.77 0 0 1-2.528 0m0 0a3.7 3.7 0 0 1-1.388-.88a3.7 3.7 0 0 1-.88-1.388m2.268 2.268L7.288 19.67m0 0a9 9 0 0 1-1.652-1.306a9 9 0 0 1-1.306-1.652m0 0l4.138-3.448M4.33 16.712a9.01 9.01 0 0 1 0-9.424m4.138 5.976a3.77 3.77 0 0 1 0-2.528m0 0c.181-.506.475-.982.88-1.388a3.7 3.7 0 0 1 1.388-.88m-2.268 2.268L4.33 7.288m6.406 1.18L7.288 4.33m0 0a9 9 0 0 0-1.652 1.306A9 9 0 0 0 4.33 7.288" />');
3237
+ });
2599
3238
  },
2600
3239
  LightBulb(unit, props) {
2601
- xnew$1.extend(SVGTemplate, props);
2602
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 18v-5.25m0 0a6 6 0 0 0 1.5-.189m-1.5.189a6 6 0 0 1-1.5-.189m3.75 7.478a12.1 12.1 0 0 1-4.5 0m3.75 2.383a14.4 14.4 0 0 1-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 1 0-7.517 0c.85.493 1.509 1.333 1.509 2.316V18" />');
3240
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3241
+ xnew$1((unit) => {
3242
+ xnew$1.extend(OutLineTemplate, props);
3243
+ xnew$1('<path d="M12 18v-5.25m0 0a6 6 0 0 0 1.5-.189m-1.5.189a6 6 0 0 1-1.5-.189m3.75 7.478a12.1 12.1 0 0 1-4.5 0m3.75 2.383a14.4 14.4 0 0 1-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 1 0-7.517 0c.85.493 1.509 1.333 1.509 2.316V18" />');
3244
+ });
2603
3245
  },
2604
3246
  Link(unit, props) {
2605
- xnew$1.extend(SVGTemplate, props);
2606
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M13.19 8.688a4.5 4.5 0 0 1 1.242 7.244l-4.5 4.5a4.5 4.5 0 0 1-6.364-6.364l1.757-1.757m13.35-.622l1.757-1.757a4.5 4.5 0 0 0-6.364-6.364l-4.5 4.5a4.5 4.5 0 0 0 1.242 7.244" />');
3247
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3248
+ xnew$1((unit) => {
3249
+ xnew$1.extend(OutLineTemplate, props);
3250
+ xnew$1('<path d="M13.19 8.688a4.5 4.5 0 0 1 1.242 7.244l-4.5 4.5a4.5 4.5 0 0 1-6.364-6.364l1.757-1.757m13.35-.622l1.757-1.757a4.5 4.5 0 0 0-6.364-6.364l-4.5 4.5a4.5 4.5 0 0 0 1.242 7.244" />');
3251
+ });
2607
3252
  },
2608
3253
  LinkSlash(unit, props) {
2609
- xnew$1.extend(SVGTemplate, props);
2610
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M13.181 8.68a4.503 4.503 0 0 1 1.903 6.405m-9.768-2.782L3.56 14.06a4.5 4.5 0 0 0 6.364 6.365l3.129-3.129m5.614-5.615l1.757-1.757a4.5 4.5 0 0 0-6.364-6.365l-4.5 4.5q-.388.39-.661.84m1.903 6.405a4.5 4.5 0 0 1-1.242-.88a4.5 4.5 0 0 1-1.062-1.683m6.587 2.345l5.907 5.907m-5.907-5.907L8.898 8.898M2.991 2.99L8.898 8.9" />');
3254
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3255
+ xnew$1((unit) => {
3256
+ xnew$1.extend(OutLineTemplate, props);
3257
+ xnew$1('<path d="M13.181 8.68a4.503 4.503 0 0 1 1.903 6.405m-9.768-2.782L3.56 14.06a4.5 4.5 0 0 0 6.364 6.365l3.129-3.129m5.614-5.615l1.757-1.757a4.5 4.5 0 0 0-6.364-6.365l-4.5 4.5q-.388.39-.661.84m1.903 6.405a4.5 4.5 0 0 1-1.242-.88a4.5 4.5 0 0 1-1.062-1.683m6.587 2.345l5.907 5.907m-5.907-5.907L8.898 8.898M2.991 2.99L8.898 8.9" />');
3258
+ });
2611
3259
  },
2612
3260
  ListBullet(unit, props) {
2613
- xnew$1.extend(SVGTemplate, props);
2614
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0M3.75 12h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m-.375 5.25h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3261
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3262
+ xnew$1((unit) => {
3263
+ xnew$1.extend(OutLineTemplate, props);
3264
+ xnew$1('<path d="M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0M3.75 12h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m-.375 5.25h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3265
+ });
2615
3266
  },
2616
3267
  LockClosed(unit, props) {
2617
- xnew$1.extend(SVGTemplate, props);
2618
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25" />');
3268
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3269
+ xnew$1((unit) => {
3270
+ xnew$1.extend(OutLineTemplate, props);
3271
+ xnew$1('<path d="M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25" />');
3272
+ });
2619
3273
  },
2620
3274
  LockOpen(unit, props) {
2621
- xnew$1.extend(SVGTemplate, props);
2622
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25" />');
3275
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3276
+ xnew$1((unit) => {
3277
+ xnew$1.extend(OutLineTemplate, props);
3278
+ xnew$1('<path d="M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25" />');
3279
+ });
2623
3280
  },
2624
3281
  MagnifyingGlass(unit, props) {
2625
- xnew$1.extend(SVGTemplate, props);
2626
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607" />');
3282
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3283
+ xnew$1((unit) => {
3284
+ xnew$1.extend(OutLineTemplate, props);
3285
+ xnew$1('<path d="m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607" />');
3286
+ });
2627
3287
  },
2628
3288
  MagnifyingGlassCircle(unit, props) {
2629
- xnew$1.extend(SVGTemplate, props);
2630
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m15.75 15.75l-2.488-2.488m0 0a3.375 3.375 0 1 0-4.773-4.773a3.375 3.375 0 0 0 4.772 4.772M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3289
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3290
+ xnew$1((unit) => {
3291
+ xnew$1.extend(OutLineTemplate, props);
3292
+ xnew$1('<path d="m15.75 15.75l-2.488-2.488m0 0a3.375 3.375 0 1 0-4.773-4.773a3.375 3.375 0 0 0 4.772 4.772M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3293
+ });
2631
3294
  },
2632
3295
  MagnifyingGlassMinus(unit, props) {
2633
- xnew$1.extend(SVGTemplate, props);
2634
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607M13.5 10.5h-6" />');
3296
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3297
+ xnew$1((unit) => {
3298
+ xnew$1.extend(OutLineTemplate, props);
3299
+ xnew$1('<path d="m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607M13.5 10.5h-6" />');
3300
+ });
2635
3301
  },
2636
3302
  MagnifyingGlassPlus(unit, props) {
2637
- xnew$1.extend(SVGTemplate, props);
2638
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607M10.5 7.5v6m3-3h-6" />');
3303
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3304
+ xnew$1((unit) => {
3305
+ xnew$1.extend(OutLineTemplate, props);
3306
+ xnew$1('<path d="m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607M10.5 7.5v6m3-3h-6" />');
3307
+ });
2639
3308
  },
2640
3309
  Map(unit, props) {
2641
- xnew$1.extend(SVGTemplate, props);
2642
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 6.75V15m6-6v8.25m.503 3.499l4.875-2.438c.381-.19.622-.58.622-1.006V4.82c0-.836-.88-1.38-1.628-1.006l-3.869 1.934a1.12 1.12 0 0 1-1.006 0L9.503 3.252a1.13 1.13 0 0 0-1.006 0L3.622 5.689A1.13 1.13 0 0 0 3 6.695V19.18c0 .836.88 1.38 1.628 1.006l3.869-1.934a1.12 1.12 0 0 1 1.006 0l4.994 2.497c.317.158.69.158 1.006 0" />');
3310
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3311
+ xnew$1((unit) => {
3312
+ xnew$1.extend(OutLineTemplate, props);
3313
+ xnew$1('<path d="M9 6.75V15m6-6v8.25m.503 3.499l4.875-2.438c.381-.19.622-.58.622-1.006V4.82c0-.836-.88-1.38-1.628-1.006l-3.869 1.934a1.12 1.12 0 0 1-1.006 0L9.503 3.252a1.13 1.13 0 0 0-1.006 0L3.622 5.689A1.13 1.13 0 0 0 3 6.695V19.18c0 .836.88 1.38 1.628 1.006l3.869-1.934a1.12 1.12 0 0 1 1.006 0l4.994 2.497c.317.158.69.158 1.006 0" />');
3314
+ });
2643
3315
  },
2644
3316
  MapPin(unit, props) {
2645
- xnew$1.extend(SVGTemplate, props);
2646
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 10.5a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
2647
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0" />');
3317
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3318
+ xnew$1((unit) => {
3319
+ xnew$1.extend(OutLineTemplate, props);
3320
+ xnew$1('<path d="M15 10.5a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
3321
+ xnew$1('<path d="M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0" />');
3322
+ });
2648
3323
  },
2649
3324
  Megaphone(unit, props) {
2650
- xnew$1.extend(SVGTemplate, props);
2651
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M10.34 15.84q-1.033-.09-2.09-.09H7.5a4.5 4.5 0 1 1 0-9h.75q1.057 0 2.09-.09m0 9.18q.381 1.445.985 2.783c.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a21 21 0 0 1-1.44-4.282m3.102.069a18 18 0 0 1-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.9 23.9 0 0 1 8.835 2.535M10.34 6.66a23.9 23.9 0 0 0 8.835-2.535m0 0A24 24 0 0 0 18.795 3m.38 1.125a24 24 0 0 1 1.014 5.395m-1.014 8.855q-.177.57-.38 1.125m.38-1.125a24 24 0 0 0 1.014-5.395m0-3.46a2.25 2.25 0 0 1 0 3.46m0-3.46a24 24 0 0 1 0 3.46" />');
3325
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3326
+ xnew$1((unit) => {
3327
+ xnew$1.extend(OutLineTemplate, props);
3328
+ xnew$1('<path d="M10.34 15.84q-1.033-.09-2.09-.09H7.5a4.5 4.5 0 1 1 0-9h.75q1.057 0 2.09-.09m0 9.18q.381 1.445.985 2.783c.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a21 21 0 0 1-1.44-4.282m3.102.069a18 18 0 0 1-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.9 23.9 0 0 1 8.835 2.535M10.34 6.66a23.9 23.9 0 0 0 8.835-2.535m0 0A24 24 0 0 0 18.795 3m.38 1.125a24 24 0 0 1 1.014 5.395m-1.014 8.855q-.177.57-.38 1.125m.38-1.125a24 24 0 0 0 1.014-5.395m0-3.46a2.25 2.25 0 0 1 0 3.46m0-3.46a24 24 0 0 1 0 3.46" />');
3329
+ });
2652
3330
  },
2653
3331
  Microphone(unit, props) {
2654
- xnew$1.extend(SVGTemplate, props);
2655
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 18.75a6 6 0 0 0 6-6v-1.5m-6 7.5a6 6 0 0 1-6-6v-1.5m6 7.5v3.75m-3.75 0h7.5M12 15.75a3 3 0 0 1-3-3V4.5a3 3 0 1 1 6 0v8.25a3 3 0 0 1-3 3" />');
3332
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3333
+ xnew$1((unit) => {
3334
+ xnew$1.extend(OutLineTemplate, props);
3335
+ xnew$1('<path d="M12 18.75a6 6 0 0 0 6-6v-1.5m-6 7.5a6 6 0 0 1-6-6v-1.5m6 7.5v3.75m-3.75 0h7.5M12 15.75a3 3 0 0 1-3-3V4.5a3 3 0 1 1 6 0v8.25a3 3 0 0 1-3 3" />');
3336
+ });
2656
3337
  },
2657
3338
  Minus(unit, props) {
2658
- xnew$1.extend(SVGTemplate, props);
2659
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M5 12h14" />');
3339
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3340
+ xnew$1((unit) => {
3341
+ xnew$1.extend(OutLineTemplate, props);
3342
+ xnew$1('<path d="M5 12h14" />');
3343
+ });
2660
3344
  },
2661
3345
  MinusCircle(unit, props) {
2662
- xnew$1.extend(SVGTemplate, props);
2663
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 12H9m12 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3346
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3347
+ xnew$1((unit) => {
3348
+ xnew$1.extend(OutLineTemplate, props);
3349
+ xnew$1('<path d="M15 12H9m12 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3350
+ });
2664
3351
  },
2665
3352
  MinusSmall(unit, props) {
2666
- xnew$1.extend(SVGTemplate, props);
2667
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M18 12H6" />');
3353
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3354
+ xnew$1((unit) => {
3355
+ xnew$1.extend(OutLineTemplate, props);
3356
+ xnew$1('<path d="M18 12H6" />');
3357
+ });
2668
3358
  },
2669
3359
  Moon(unit, props) {
2670
- xnew$1.extend(SVGTemplate, props);
2671
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21.752 15.002A9.7 9.7 0 0 1 18 15.75A9.75 9.75 0 0 1 8.25 6c0-1.33.266-2.597.748-3.752A9.75 9.75 0 0 0 3 11.25A9.75 9.75 0 0 0 12.75 21a9.75 9.75 0 0 0 9.002-5.998" />');
3360
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3361
+ xnew$1((unit) => {
3362
+ xnew$1.extend(OutLineTemplate, props);
3363
+ xnew$1('<path d="M21.752 15.002A9.7 9.7 0 0 1 18 15.75A9.75 9.75 0 0 1 8.25 6c0-1.33.266-2.597.748-3.752A9.75 9.75 0 0 0 3 11.25A9.75 9.75 0 0 0 12.75 21a9.75 9.75 0 0 0 9.002-5.998" />');
3364
+ });
2672
3365
  },
2673
3366
  MusicalNote(unit, props) {
2674
- xnew$1.extend(SVGTemplate, props);
2675
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m9 9l10.5-3m0 6.553v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 1 1-.99-3.467l2.31-.66a2.25 2.25 0 0 0 1.632-2.163m0 0V2.25L9 5.25v10.303m0 0v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 0 1-.99-3.467l2.31-.66A2.25 2.25 0 0 0 9 15.553" />');
3367
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3368
+ xnew$1((unit) => {
3369
+ xnew$1.extend(OutLineTemplate, props);
3370
+ xnew$1('<path d="m9 9l10.5-3m0 6.553v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 1 1-.99-3.467l2.31-.66a2.25 2.25 0 0 0 1.632-2.163m0 0V2.25L9 5.25v10.303m0 0v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 0 1-.99-3.467l2.31-.66A2.25 2.25 0 0 0 9 15.553" />');
3371
+ });
2676
3372
  },
2677
3373
  Newspaper(unit, props) {
2678
- xnew$1.extend(SVGTemplate, props);
2679
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 7.5h1.5m-1.5 3h1.5m-7.5 3h7.5m-7.5 3h7.5m3-9h3.375c.621 0 1.125.504 1.125 1.125V18a2.25 2.25 0 0 1-2.25 2.25M16.5 7.5V18a2.25 2.25 0 0 0 2.25 2.25M16.5 7.5V4.875c0-.621-.504-1.125-1.125-1.125H4.125C3.504 3.75 3 4.254 3 4.875V18a2.25 2.25 0 0 0 2.25 2.25h13.5M6 7.5h3v3H6z" />');
3374
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3375
+ xnew$1((unit) => {
3376
+ xnew$1.extend(OutLineTemplate, props);
3377
+ xnew$1('<path d="M12 7.5h1.5m-1.5 3h1.5m-7.5 3h7.5m-7.5 3h7.5m3-9h3.375c.621 0 1.125.504 1.125 1.125V18a2.25 2.25 0 0 1-2.25 2.25M16.5 7.5V18a2.25 2.25 0 0 0 2.25 2.25M16.5 7.5V4.875c0-.621-.504-1.125-1.125-1.125H4.125C3.504 3.75 3 4.254 3 4.875V18a2.25 2.25 0 0 0 2.25 2.25h13.5M6 7.5h3v3H6z" />');
3378
+ });
2680
3379
  },
2681
3380
  NoSymbol(unit, props) {
2682
- xnew$1.extend(SVGTemplate, props);
2683
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M18.364 18.364A9 9 0 0 0 5.636 5.636m12.728 12.728A9 9 0 0 1 5.636 5.636m12.728 12.728L5.636 5.636" />');
3381
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3382
+ xnew$1((unit) => {
3383
+ xnew$1.extend(OutLineTemplate, props);
3384
+ xnew$1('<path d="M18.364 18.364A9 9 0 0 0 5.636 5.636m12.728 12.728A9 9 0 0 1 5.636 5.636m12.728 12.728L5.636 5.636" />');
3385
+ });
2684
3386
  },
2685
3387
  NumberedList(unit, props) {
2686
- xnew$1.extend(SVGTemplate, props);
2687
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.242 5.992h12m-12 6.003H20.24m-12 5.999h12M4.117 7.495v-3.75H2.99m1.125 3.75H2.99m1.125 0H5.24m-1.92 2.577a1.125 1.125 0 1 1 1.591 1.59l-1.83 1.83h2.16M2.99 15.746h1.125a1.125 1.125 0 0 1 0 2.25H3.74m0-.002h.375a1.125 1.125 0 0 1 0 2.25H2.99" />');
3388
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3389
+ xnew$1((unit) => {
3390
+ xnew$1.extend(OutLineTemplate, props);
3391
+ xnew$1('<path d="M8.242 5.992h12m-12 6.003H20.24m-12 5.999h12M4.117 7.495v-3.75H2.99m1.125 3.75H2.99m1.125 0H5.24m-1.92 2.577a1.125 1.125 0 1 1 1.591 1.59l-1.83 1.83h2.16M2.99 15.746h1.125a1.125 1.125 0 0 1 0 2.25H3.74m0-.002h.375a1.125 1.125 0 0 1 0 2.25H2.99" />');
3392
+ });
2688
3393
  },
2689
3394
  PaintBrush(unit, props) {
2690
- xnew$1.extend(SVGTemplate, props);
2691
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9.53 16.122a3 3 0 0 0-5.78 1.128a2.25 2.25 0 0 1-2.4 2.245a4.5 4.5 0 0 0 8.4-2.245c0-.399-.078-.78-.22-1.128m0 0a16 16 0 0 0 3.388-1.62m-5.043-.025a16 16 0 0 1 1.622-3.395m3.42 3.42a16 16 0 0 0 4.764-4.648l3.876-5.814a1.151 1.151 0 0 0-1.597-1.597L14.146 6.32a16 16 0 0 0-4.649 4.764m3.42 3.42a6.78 6.78 0 0 0-3.42-3.42" />');
3395
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3396
+ xnew$1((unit) => {
3397
+ xnew$1.extend(OutLineTemplate, props);
3398
+ xnew$1('<path d="M9.53 16.122a3 3 0 0 0-5.78 1.128a2.25 2.25 0 0 1-2.4 2.245a4.5 4.5 0 0 0 8.4-2.245c0-.399-.078-.78-.22-1.128m0 0a16 16 0 0 0 3.388-1.62m-5.043-.025a16 16 0 0 1 1.622-3.395m3.42 3.42a16 16 0 0 0 4.764-4.648l3.876-5.814a1.151 1.151 0 0 0-1.597-1.597L14.146 6.32a16 16 0 0 0-4.649 4.764m3.42 3.42a6.78 6.78 0 0 0-3.42-3.42" />');
3399
+ });
2692
3400
  },
2693
3401
  PaperAirplane(unit, props) {
2694
- xnew$1.extend(SVGTemplate, props);
2695
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6 12L3.269 3.125A59.8 59.8 0 0 1 21.486 12a59.8 59.8 0 0 1-18.217 8.875zm0 0h7.5" />');
3402
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3403
+ xnew$1((unit) => {
3404
+ xnew$1.extend(OutLineTemplate, props);
3405
+ xnew$1('<path d="M6 12L3.269 3.125A59.8 59.8 0 0 1 21.486 12a59.8 59.8 0 0 1-18.217 8.875zm0 0h7.5" />');
3406
+ });
2696
3407
  },
2697
3408
  PaperClip(unit, props) {
2698
- xnew$1.extend(SVGTemplate, props);
2699
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m18.375 12.739l-7.693 7.693a4.5 4.5 0 0 1-6.364-6.364l10.94-10.94A3 3 0 1 1 19.5 7.372L8.552 18.32m.009-.01l-.01.01m5.699-9.941l-7.81 7.81a1.5 1.5 0 0 0 2.112 2.13" />');
3409
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3410
+ xnew$1((unit) => {
3411
+ xnew$1.extend(OutLineTemplate, props);
3412
+ xnew$1('<path d="m18.375 12.739l-7.693 7.693a4.5 4.5 0 0 1-6.364-6.364l10.94-10.94A3 3 0 1 1 19.5 7.372L8.552 18.32m.009-.01l-.01.01m5.699-9.941l-7.81 7.81a1.5 1.5 0 0 0 2.112 2.13" />');
3413
+ });
2700
3414
  },
2701
3415
  Pause(unit, props) {
2702
- xnew$1.extend(SVGTemplate, props);
2703
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 5.25v13.5m-7.5-13.5v13.5" />');
3416
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3417
+ xnew$1((unit) => {
3418
+ xnew$1.extend(OutLineTemplate, props);
3419
+ xnew$1('<path d="M15.75 5.25v13.5m-7.5-13.5v13.5" />');
3420
+ });
2704
3421
  },
2705
3422
  PauseCircle(unit, props) {
2706
- xnew$1.extend(SVGTemplate, props);
2707
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.25 9v6m-4.5 0V9M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3423
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3424
+ xnew$1((unit) => {
3425
+ xnew$1.extend(OutLineTemplate, props);
3426
+ xnew$1('<path d="M14.25 9v6m-4.5 0V9M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3427
+ });
2708
3428
  },
2709
3429
  Pencil(unit, props) {
2710
- xnew$1.extend(SVGTemplate, props);
2711
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m16.862 4.487l1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L6.832 19.82a4.5 4.5 0 0 1-1.897 1.13l-2.685.8l.8-2.685a4.5 4.5 0 0 1 1.13-1.897zm0 0L19.5 7.125" />');
3430
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3431
+ xnew$1((unit) => {
3432
+ xnew$1.extend(OutLineTemplate, props);
3433
+ xnew$1('<path d="m16.862 4.487l1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L6.832 19.82a4.5 4.5 0 0 1-1.897 1.13l-2.685.8l.8-2.685a4.5 4.5 0 0 1 1.13-1.897zm0 0L19.5 7.125" />');
3434
+ });
2712
3435
  },
2713
3436
  PencilSquare(unit, props) {
2714
- xnew$1.extend(SVGTemplate, props);
2715
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m16.862 4.487l1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10" />');
3437
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3438
+ xnew$1((unit) => {
3439
+ xnew$1.extend(OutLineTemplate, props);
3440
+ xnew$1('<path d="m16.862 4.487l1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10" />');
3441
+ });
2716
3442
  },
2717
3443
  PercentBadge(unit, props) {
2718
- xnew$1.extend(SVGTemplate, props);
2719
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m8.99 14.993l6-6m6 3.001a3.75 3.75 0 0 1-1.593 3.069a3.75 3.75 0 0 1-1.043 3.296a3.75 3.75 0 0 1-3.296 1.043a3.75 3.75 0 0 1-3.068 1.593c-1.268 0-2.39-.63-3.068-1.593a3.75 3.75 0 0 1-3.296-1.043a3.75 3.75 0 0 1-1.043-3.297a3.75 3.75 0 0 1-1.593-3.068c0-1.268.63-2.39 1.593-3.068a3.75 3.75 0 0 1 1.043-3.297a3.75 3.75 0 0 1 3.296-1.042a3.75 3.75 0 0 1 3.068-1.594c1.268 0 2.39.63 3.068 1.593a3.75 3.75 0 0 1 3.296 1.043a3.75 3.75 0 0 1 1.043 3.297a3.75 3.75 0 0 1 1.593 3.068M9.74 9.743h.008v.007H9.74zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m4.125 4.5h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3444
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3445
+ xnew$1((unit) => {
3446
+ xnew$1.extend(OutLineTemplate, props);
3447
+ xnew$1('<path d="m8.99 14.993l6-6m6 3.001a3.75 3.75 0 0 1-1.593 3.069a3.75 3.75 0 0 1-1.043 3.296a3.75 3.75 0 0 1-3.296 1.043a3.75 3.75 0 0 1-3.068 1.593c-1.268 0-2.39-.63-3.068-1.593a3.75 3.75 0 0 1-3.296-1.043a3.75 3.75 0 0 1-1.043-3.297a3.75 3.75 0 0 1-1.593-3.068c0-1.268.63-2.39 1.593-3.068a3.75 3.75 0 0 1 1.043-3.297a3.75 3.75 0 0 1 3.296-1.042a3.75 3.75 0 0 1 3.068-1.594c1.268 0 2.39.63 3.068 1.593a3.75 3.75 0 0 1 3.296 1.043a3.75 3.75 0 0 1 1.043 3.297a3.75 3.75 0 0 1 1.593 3.068M9.74 9.743h.008v.007H9.74zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m4.125 4.5h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3448
+ });
2720
3449
  },
2721
3450
  Phone(unit, props) {
2722
- xnew$1.extend(SVGTemplate, props);
2723
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.04 12.04 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5z" />');
3451
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3452
+ xnew$1((unit) => {
3453
+ xnew$1.extend(OutLineTemplate, props);
3454
+ xnew$1('<path d="M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.04 12.04 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5z" />');
3455
+ });
2724
3456
  },
2725
3457
  PhoneArrowDownLeft(unit, props) {
2726
- xnew$1.extend(SVGTemplate, props);
2727
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.25 9.75v-4.5m0 4.5h4.5m-4.5 0l6-6m-3 18c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.06 1.06 0 0 0-.38 1.21a12.04 12.04 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.13 1.13 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z" />');
3458
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3459
+ xnew$1((unit) => {
3460
+ xnew$1.extend(OutLineTemplate, props);
3461
+ xnew$1('<path d="M14.25 9.75v-4.5m0 4.5h4.5m-4.5 0l6-6m-3 18c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.06 1.06 0 0 0-.38 1.21a12.04 12.04 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.13 1.13 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z" />');
3462
+ });
2728
3463
  },
2729
3464
  PhoneArrowUpRight(unit, props) {
2730
- xnew$1.extend(SVGTemplate, props);
2731
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M20.25 3.75v4.5m0-4.5h-4.5m4.5 0l-6 6m3 12c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.06 1.06 0 0 0-.38 1.21a12.04 12.04 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.13 1.13 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z" />');
3465
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3466
+ xnew$1((unit) => {
3467
+ xnew$1.extend(OutLineTemplate, props);
3468
+ xnew$1('<path d="M20.25 3.75v4.5m0-4.5h-4.5m4.5 0l-6 6m3 12c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.06 1.06 0 0 0-.38 1.21a12.04 12.04 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.13 1.13 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z" />');
3469
+ });
2732
3470
  },
2733
3471
  PhoneXMark(unit, props) {
2734
- xnew$1.extend(SVGTemplate, props);
2735
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 3.75L18 6m0 0l2.25 2.25M18 6l2.25-2.25M18 6l-2.25 2.25m1.5 13.5c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.06 1.06 0 0 0-.38 1.21a12.04 12.04 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.13 1.13 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z" />');
3472
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3473
+ xnew$1((unit) => {
3474
+ xnew$1.extend(OutLineTemplate, props);
3475
+ xnew$1('<path d="M15.75 3.75L18 6m0 0l2.25 2.25M18 6l2.25-2.25M18 6l-2.25 2.25m1.5 13.5c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.06 1.06 0 0 0-.38 1.21a12.04 12.04 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.13 1.13 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z" />');
3476
+ });
2736
3477
  },
2737
3478
  Photo(unit, props) {
2738
- xnew$1.extend(SVGTemplate, props);
2739
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m2.25 15.75l5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5l1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5m10.5-11.25h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3479
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3480
+ xnew$1((unit) => {
3481
+ xnew$1.extend(OutLineTemplate, props);
3482
+ xnew$1('<path d="m2.25 15.75l5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5l1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5m10.5-11.25h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3483
+ });
2740
3484
  },
2741
3485
  Play(unit, props) {
2742
- xnew$1.extend(SVGTemplate, props);
2743
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986z" />');
3486
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3487
+ xnew$1((unit) => {
3488
+ xnew$1.extend(OutLineTemplate, props);
3489
+ xnew$1('<path d="M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986z" />');
3490
+ });
2744
3491
  },
2745
3492
  PlayCircle(unit, props) {
2746
- xnew$1.extend(SVGTemplate, props);
2747
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2748
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.91 11.672a.375.375 0 0 1 0 .656l-5.603 3.113a.375.375 0 0 1-.557-.328V8.887c0-.286.307-.466.557-.327z" />');
3493
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3494
+ xnew$1((unit) => {
3495
+ xnew$1.extend(OutLineTemplate, props);
3496
+ xnew$1('<path d="M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3497
+ xnew$1('<path d="M15.91 11.672a.375.375 0 0 1 0 .656l-5.603 3.113a.375.375 0 0 1-.557-.328V8.887c0-.286.307-.466.557-.327z" />');
3498
+ });
2749
3499
  },
2750
3500
  PlayPause(unit, props) {
2751
- xnew$1.extend(SVGTemplate, props);
2752
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 7.5V18M15 7.5V18M3 16.811V8.69c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811" />');
3501
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3502
+ xnew$1((unit) => {
3503
+ xnew$1.extend(OutLineTemplate, props);
3504
+ xnew$1('<path d="M21 7.5V18M15 7.5V18M3 16.811V8.69c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811" />');
3505
+ });
2753
3506
  },
2754
3507
  Plus(unit, props) {
2755
- xnew$1.extend(SVGTemplate, props);
2756
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" />');
3508
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3509
+ xnew$1((unit) => {
3510
+ xnew$1.extend(OutLineTemplate, props);
3511
+ xnew$1('<path d="M12 4.5v15m7.5-7.5h-15" />');
3512
+ });
2757
3513
  },
2758
3514
  PlusCircle(unit, props) {
2759
- xnew$1.extend(SVGTemplate, props);
2760
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v6m3-3H9m12 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3515
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3516
+ xnew$1((unit) => {
3517
+ xnew$1.extend(OutLineTemplate, props);
3518
+ xnew$1('<path d="M12 9v6m3-3H9m12 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3519
+ });
2761
3520
  },
2762
3521
  PlusSmall(unit, props) {
2763
- xnew$1.extend(SVGTemplate, props);
2764
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 6v12m6-6H6" />');
3522
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3523
+ xnew$1((unit) => {
3524
+ xnew$1.extend(OutLineTemplate, props);
3525
+ xnew$1('<path d="M12 6v12m6-6H6" />');
3526
+ });
2765
3527
  },
2766
3528
  Power(unit, props) {
2767
- xnew$1.extend(SVGTemplate, props);
2768
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M5.636 5.636a9 9 0 1 0 12.728 0M12 3v9" />');
3529
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3530
+ xnew$1((unit) => {
3531
+ xnew$1.extend(OutLineTemplate, props);
3532
+ xnew$1('<path d="M5.636 5.636a9 9 0 1 0 12.728 0M12 3v9" />');
3533
+ });
2769
3534
  },
2770
3535
  PresentationChartBar(unit, props) {
2771
- xnew$1.extend(SVGTemplate, props);
2772
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-.5 1.5M9 11.25v1.5M12 9v3.75m3-6v6" />');
3536
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3537
+ xnew$1((unit) => {
3538
+ xnew$1.extend(OutLineTemplate, props);
3539
+ xnew$1('<path d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-.5 1.5M9 11.25v1.5M12 9v3.75m3-6v6" />');
3540
+ });
2773
3541
  },
2774
3542
  PresentationChartLine(unit, props) {
2775
- xnew$1.extend(SVGTemplate, props);
2776
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-.5 1.5m.75-9l3-3l2.148 2.148A12.1 12.1 0 0 1 16.5 7.605" />');
3543
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3544
+ xnew$1((unit) => {
3545
+ xnew$1.extend(OutLineTemplate, props);
3546
+ xnew$1('<path d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-.5 1.5m.75-9l3-3l2.148 2.148A12.1 12.1 0 0 1 16.5 7.605" />');
3547
+ });
2777
3548
  },
2778
3549
  Printer(unit, props) {
2779
- xnew$1.extend(SVGTemplate, props);
2780
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.72 13.829q-.36.045-.72.096m.72-.096a42.4 42.4 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171q.36.045.72.096m-.72-.096L17.66 18m0 0l.229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48 48 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48 48 0 0 1 1.913-.247m10.5 0a48.5 48.5 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18zm-3 0h.008v.008H15z" />');
3550
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3551
+ xnew$1((unit) => {
3552
+ xnew$1.extend(OutLineTemplate, props);
3553
+ xnew$1('<path d="M6.72 13.829q-.36.045-.72.096m.72-.096a42.4 42.4 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171q.36.045.72.096m-.72-.096L17.66 18m0 0l.229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48 48 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48 48 0 0 1 1.913-.247m10.5 0a48.5 48.5 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18zm-3 0h.008v.008H15z" />');
3554
+ });
2781
3555
  },
2782
3556
  PuzzlePiece(unit, props) {
2783
- xnew$1.extend(SVGTemplate, props);
2784
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M14.25 6.087c0-.355.186-.676.401-.959c.221-.29.349-.634.349-1.003c0-1.036-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003c.215.283.401.604.401.959v0a.64.64 0 0 1-.657.643a48 48 0 0 1-4.163-.3q.28 2.42.315 4.907a.656.656 0 0 1-.658.663v0c-.355 0-.676-.186-.959-.401a1.65 1.65 0 0 0-1.003-.349c-1.036 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349c.283-.215.604-.401.959-.401v0c.31 0 .555.26.532.57a48 48 0 0 1-.642 5.056q2.278.286 4.616.354a.64.64 0 0 0 .657-.643v0c0-.355-.186-.676-.401-.959a1.65 1.65 0 0 1-.349-1.003c0-1.035 1.008-1.875 2.25-1.875c1.243 0 2.25.84 2.25 1.875c0 .369-.128.713-.349 1.003c-.215.283-.4.604-.4.959v0c0 .333.277.599.61.58a48 48 0 0 0 5.427-.63a48 48 0 0 0 .582-4.717a.53.53 0 0 0-.533-.57v0c-.355 0-.676.186-.959.401c-.29.221-.634.349-1.003.349c-1.035 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.37 0 .713.128 1.003.349c.283.215.604.401.96.401v0a.656.656 0 0 0 .658-.663a48 48 0 0 0-.37-5.36q-2.83.515-5.766.689a.58.58 0 0 1-.61-.58" />');
3557
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3558
+ xnew$1((unit) => {
3559
+ xnew$1.extend(OutLineTemplate, props);
3560
+ xnew$1('<path d="M14.25 6.087c0-.355.186-.676.401-.959c.221-.29.349-.634.349-1.003c0-1.036-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003c.215.283.401.604.401.959v0a.64.64 0 0 1-.657.643a48 48 0 0 1-4.163-.3q.28 2.42.315 4.907a.656.656 0 0 1-.658.663v0c-.355 0-.676-.186-.959-.401a1.65 1.65 0 0 0-1.003-.349c-1.036 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349c.283-.215.604-.401.959-.401v0c.31 0 .555.26.532.57a48 48 0 0 1-.642 5.056q2.278.286 4.616.354a.64.64 0 0 0 .657-.643v0c0-.355-.186-.676-.401-.959a1.65 1.65 0 0 1-.349-1.003c0-1.035 1.008-1.875 2.25-1.875c1.243 0 2.25.84 2.25 1.875c0 .369-.128.713-.349 1.003c-.215.283-.4.604-.4.959v0c0 .333.277.599.61.58a48 48 0 0 0 5.427-.63a48 48 0 0 0 .582-4.717a.53.53 0 0 0-.533-.57v0c-.355 0-.676.186-.959.401c-.29.221-.634.349-1.003.349c-1.035 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.37 0 .713.128 1.003.349c.283.215.604.401.96.401v0a.656.656 0 0 0 .658-.663a48 48 0 0 0-.37-5.36q-2.83.515-5.766.689a.58.58 0 0 1-.61-.58" />');
3561
+ });
2785
3562
  },
2786
3563
  QrCode(unit, props) {
2787
- xnew$1.extend(SVGTemplate, props);
2788
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 3.75 9.375zm0 9.75c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5a1.125 1.125 0 0 1-1.125-1.125zm9.75-9.75c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 13.5 9.375z" />');
2789
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 6.75h.75v.75h-.75zm0 9.75h.75v.75h-.75zm9.75-9.75h.75v.75h-.75zm-3 6.75h.75v.75h-.75zm0 6h.75v.75h-.75zm6-6h.75v.75h-.75zm0 6h.75v.75h-.75zm-3-3h.75v.75h-.75z" />');
3564
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3565
+ xnew$1((unit) => {
3566
+ xnew$1.extend(OutLineTemplate, props);
3567
+ xnew$1('<path d="M3.75 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 3.75 9.375zm0 9.75c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5a1.125 1.125 0 0 1-1.125-1.125zm9.75-9.75c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 13.5 9.375z" />');
3568
+ xnew$1('<path d="M6.75 6.75h.75v.75h-.75zm0 9.75h.75v.75h-.75zm9.75-9.75h.75v.75h-.75zm-3 6.75h.75v.75h-.75zm0 6h.75v.75h-.75zm6-6h.75v.75h-.75zm0 6h.75v.75h-.75zm-3-3h.75v.75h-.75z" />');
3569
+ });
2790
3570
  },
2791
3571
  QuestionMarkCircle(unit, props) {
2792
- xnew$1.extend(SVGTemplate, props);
2793
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9.879 7.519c1.172-1.025 3.071-1.025 4.243 0c1.171 1.025 1.171 2.687 0 3.712q-.308.268-.67.442c-.746.361-1.452.999-1.452 1.827v.75M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9 5.25h.008v.008H12z" />');
3572
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3573
+ xnew$1((unit) => {
3574
+ xnew$1.extend(OutLineTemplate, props);
3575
+ xnew$1('<path d="M9.879 7.519c1.172-1.025 3.071-1.025 4.243 0c1.171 1.025 1.171 2.687 0 3.712q-.308.268-.67.442c-.746.361-1.452.999-1.452 1.827v.75M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9 5.25h.008v.008H12z" />');
3576
+ });
2794
3577
  },
2795
3578
  QueueList(unit, props) {
2796
- xnew$1.extend(SVGTemplate, props);
2797
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 12h16.5m-16.5 3.75h16.5M3.75 19.5h16.5M5.625 4.5h12.75a1.875 1.875 0 0 1 0 3.75H5.625a1.875 1.875 0 0 1 0-3.75" />');
3579
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3580
+ xnew$1((unit) => {
3581
+ xnew$1.extend(OutLineTemplate, props);
3582
+ xnew$1('<path d="M3.75 12h16.5m-16.5 3.75h16.5M3.75 19.5h16.5M5.625 4.5h12.75a1.875 1.875 0 0 1 0 3.75H5.625a1.875 1.875 0 0 1 0-3.75" />');
3583
+ });
2798
3584
  },
2799
3585
  Radio(unit, props) {
2800
- xnew$1.extend(SVGTemplate, props);
2801
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m3.75 7.5l16.5-4.125M12 6.75a48.3 48.3 0 0 0-7.948.655C2.999 7.58 2.25 8.507 2.25 9.574v9.176A2.25 2.25 0 0 0 4.5 21h15a2.25 2.25 0 0 0 2.25-2.25V9.574c0-1.067-.75-1.994-1.802-2.169A48.3 48.3 0 0 0 12 6.75m-1.683 6.443l-.005.005l-.006-.005l.006-.005zm-.005 2.127l-.005-.006l.005-.005l.005.005zm-2.116-.006l-.005.006l-.006-.006l.005-.005zm-.005-2.116l-.006-.005l.006-.005l.005.005zM9.255 10.5v.008h-.008V10.5zm3.249 1.88l-.007.004l-.003-.007l.006-.003zm-1.38 5.126l-.003-.006l.006-.004l.004.007zm.007-6.501l-.003.006l-.007-.003l.004-.007zm1.37 5.129l-.007-.004l.004-.006l.006.003zm.504-1.877h-.008v-.007h.008zM9.255 18v.008h-.008V18zm-3.246-1.87l-.007.004L6 16.127l.006-.003zm1.366-5.119l-.004-.006l.006-.004l.004.007zM7.38 17.5l-.003.006l-.007-.003l.004-.007zm-1.376-5.116L6 12.38l.003-.007l.007.004zm-.5 1.873h-.008v-.007h.008zM17.25 12.75a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 4.5a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5" />');
3586
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3587
+ xnew$1((unit) => {
3588
+ xnew$1.extend(OutLineTemplate, props);
3589
+ xnew$1('<path d="m3.75 7.5l16.5-4.125M12 6.75a48.3 48.3 0 0 0-7.948.655C2.999 7.58 2.25 8.507 2.25 9.574v9.176A2.25 2.25 0 0 0 4.5 21h15a2.25 2.25 0 0 0 2.25-2.25V9.574c0-1.067-.75-1.994-1.802-2.169A48.3 48.3 0 0 0 12 6.75m-1.683 6.443l-.005.005l-.006-.005l.006-.005zm-.005 2.127l-.005-.006l.005-.005l.005.005zm-2.116-.006l-.005.006l-.006-.006l.005-.005zm-.005-2.116l-.006-.005l.006-.005l.005.005zM9.255 10.5v.008h-.008V10.5zm3.249 1.88l-.007.004l-.003-.007l.006-.003zm-1.38 5.126l-.003-.006l.006-.004l.004.007zm.007-6.501l-.003.006l-.007-.003l.004-.007zm1.37 5.129l-.007-.004l.004-.006l.006.003zm.504-1.877h-.008v-.007h.008zM9.255 18v.008h-.008V18zm-3.246-1.87l-.007.004L6 16.127l.006-.003zm1.366-5.119l-.004-.006l.006-.004l.004.007zM7.38 17.5l-.003.006l-.007-.003l.004-.007zm-1.376-5.116L6 12.38l.003-.007l.007.004zm-.5 1.873h-.008v-.007h.008zM17.25 12.75a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 4.5a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5" />');
3590
+ });
2802
3591
  },
2803
3592
  ReceiptPercent(unit, props) {
2804
- xnew$1.extend(SVGTemplate, props);
2805
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m9 14.25l6-6m4.5-3.493V21.75l-3.75-1.5l-3.75 1.5l-3.75-1.5l-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.5 48.5 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185M9.75 9h.008v.008H9.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m4.125 4.5h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3593
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3594
+ xnew$1((unit) => {
3595
+ xnew$1.extend(OutLineTemplate, props);
3596
+ xnew$1('<path d="m9 14.25l6-6m4.5-3.493V21.75l-3.75-1.5l-3.75 1.5l-3.75-1.5l-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.5 48.5 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185M9.75 9h.008v.008H9.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m4.125 4.5h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3597
+ });
2806
3598
  },
2807
3599
  ReceiptRefund(unit, props) {
2808
- xnew$1.extend(SVGTemplate, props);
2809
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 9.75h4.875a2.625 2.625 0 0 1 0 5.25H12M8.25 9.75L10.5 7.5M8.25 9.75L10.5 12m9-7.243V21.75l-3.75-1.5l-3.75 1.5l-3.75-1.5l-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.5 48.5 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185" />');
3600
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3601
+ xnew$1((unit) => {
3602
+ xnew$1.extend(OutLineTemplate, props);
3603
+ xnew$1('<path d="M8.25 9.75h4.875a2.625 2.625 0 0 1 0 5.25H12M8.25 9.75L10.5 7.5M8.25 9.75L10.5 12m9-7.243V21.75l-3.75-1.5l-3.75 1.5l-3.75-1.5l-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.5 48.5 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185" />');
3604
+ });
2810
3605
  },
2811
3606
  RectangleGroup(unit, props) {
2812
- xnew$1.extend(SVGTemplate, props);
2813
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 7.125C2.25 6.504 2.754 6 3.375 6h6c.621 0 1.125.504 1.125 1.125v3.75c0 .621-.504 1.125-1.125 1.125h-6a1.125 1.125 0 0 1-1.125-1.125zm12 1.5c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v8.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125zm-10.5 7.5c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125z" />');
3607
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3608
+ xnew$1((unit) => {
3609
+ xnew$1.extend(OutLineTemplate, props);
3610
+ xnew$1('<path d="M2.25 7.125C2.25 6.504 2.754 6 3.375 6h6c.621 0 1.125.504 1.125 1.125v3.75c0 .621-.504 1.125-1.125 1.125h-6a1.125 1.125 0 0 1-1.125-1.125zm12 1.5c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v8.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125zm-10.5 7.5c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125z" />');
3611
+ });
2814
3612
  },
2815
3613
  RectangleStack(unit, props) {
2816
- xnew$1.extend(SVGTemplate, props);
2817
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6 6.878V6a2.25 2.25 0 0 1 2.25-2.25h7.5A2.25 2.25 0 0 1 18 6v.878m-12 0q.354-.126.75-.128h10.5q.396.002.75.128m-12 0A2.25 2.25 0 0 0 4.5 9v.878m13.5-3A2.25 2.25 0 0 1 19.5 9v.878m0 0a2.3 2.3 0 0 0-.75-.128H5.25q-.396.002-.75.128m15 0A2.25 2.25 0 0 1 21 12v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6c0-.98.626-1.813 1.5-2.122" />');
3614
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3615
+ xnew$1((unit) => {
3616
+ xnew$1.extend(OutLineTemplate, props);
3617
+ xnew$1('<path d="M6 6.878V6a2.25 2.25 0 0 1 2.25-2.25h7.5A2.25 2.25 0 0 1 18 6v.878m-12 0q.354-.126.75-.128h10.5q.396.002.75.128m-12 0A2.25 2.25 0 0 0 4.5 9v.878m13.5-3A2.25 2.25 0 0 1 19.5 9v.878m0 0a2.3 2.3 0 0 0-.75-.128H5.25q-.396.002-.75.128m15 0A2.25 2.25 0 0 1 21 12v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6c0-.98.626-1.813 1.5-2.122" />');
3618
+ });
2818
3619
  },
2819
3620
  RocketLaunch(unit, props) {
2820
- xnew$1.extend(SVGTemplate, props);
2821
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.59 14.37q.159.666.16 1.38a6 6 0 0 1-6 6v-4.8m5.84-2.58a14.98 14.98 0 0 0 6.16-12.12A14.98 14.98 0 0 0 9.631 8.41m5.96 5.96a14.9 14.9 0 0 1-5.841 2.58m-.119-8.54a6 6 0 0 0-7.381 5.84h4.8m2.581-5.84a14.9 14.9 0 0 0-2.58 5.84m2.699 2.7q-.155.032-.311.06a15 15 0 0 1-2.448-2.448l.06-.312m-2.24 2.39a4.49 4.49 0 0 0-1.757 4.306q.341.054.696.054a4.5 4.5 0 0 0 3.61-1.812M16.5 9a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0" />');
3621
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3622
+ xnew$1((unit) => {
3623
+ xnew$1.extend(OutLineTemplate, props);
3624
+ xnew$1('<path d="M15.59 14.37q.159.666.16 1.38a6 6 0 0 1-6 6v-4.8m5.84-2.58a14.98 14.98 0 0 0 6.16-12.12A14.98 14.98 0 0 0 9.631 8.41m5.96 5.96a14.9 14.9 0 0 1-5.841 2.58m-.119-8.54a6 6 0 0 0-7.381 5.84h4.8m2.581-5.84a14.9 14.9 0 0 0-2.58 5.84m2.699 2.7q-.155.032-.311.06a15 15 0 0 1-2.448-2.448l.06-.312m-2.24 2.39a4.49 4.49 0 0 0-1.757 4.306q.341.054.696.054a4.5 4.5 0 0 0 3.61-1.812M16.5 9a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0" />');
3625
+ });
2822
3626
  },
2823
3627
  Rss(unit, props) {
2824
- xnew$1.extend(SVGTemplate, props);
2825
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12.75 19.5v-.75a7.5 7.5 0 0 0-7.5-7.5H4.5m0-6.75h.75c7.87 0 14.25 6.38 14.25 14.25v.75M6 18.75a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0" />');
3628
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3629
+ xnew$1((unit) => {
3630
+ xnew$1.extend(OutLineTemplate, props);
3631
+ xnew$1('<path d="M12.75 19.5v-.75a7.5 7.5 0 0 0-7.5-7.5H4.5m0-6.75h.75c7.87 0 14.25 6.38 14.25 14.25v.75M6 18.75a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0" />');
3632
+ });
2826
3633
  },
2827
3634
  Scale(unit, props) {
2828
- xnew$1.extend(SVGTemplate, props);
2829
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 3v17.25m0 0c-1.472 0-2.882.265-4.185.75M12 20.25c1.472 0 2.882.265 4.185.75M18.75 4.97A48 48 0 0 0 12 4.5c-2.291 0-4.545.16-6.75.47m13.5 0q1.515.215 3 .52m-3-.52l2.62 10.726c.122.499-.106 1.028-.589 1.202a6 6 0 0 1-2.031.352a6 6 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202zm-16.5.52q1.485-.305 3-.52m0 0l2.62 10.726c.122.499-.106 1.028-.589 1.202a6 6 0 0 1-2.031.352a6 6 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202z" />');
3635
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3636
+ xnew$1((unit) => {
3637
+ xnew$1.extend(OutLineTemplate, props);
3638
+ xnew$1('<path d="M12 3v17.25m0 0c-1.472 0-2.882.265-4.185.75M12 20.25c1.472 0 2.882.265 4.185.75M18.75 4.97A48 48 0 0 0 12 4.5c-2.291 0-4.545.16-6.75.47m13.5 0q1.515.215 3 .52m-3-.52l2.62 10.726c.122.499-.106 1.028-.589 1.202a6 6 0 0 1-2.031.352a6 6 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202zm-16.5.52q1.485-.305 3-.52m0 0l2.62 10.726c.122.499-.106 1.028-.589 1.202a6 6 0 0 1-2.031.352a6 6 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202z" />');
3639
+ });
2830
3640
  },
2831
3641
  Scissors(unit, props) {
2832
- xnew$1.extend(SVGTemplate, props);
2833
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m7.848 8.25l1.536.887M7.848 8.25a3 3 0 1 1-5.196-3a3 3 0 0 1 5.196 3m1.536.887a2.17 2.17 0 0 1 1.083 1.839q.01.529.14 1.024M9.384 9.137l2.077 1.199M7.848 15.75l1.536-.887m-1.536.887a3 3 0 1 1-5.196 3a3 3 0 0 1 5.196-3m1.536-.887a2.17 2.17 0 0 0 1.083-1.838q.01-.529.14-1.025m-1.223 2.863l2.077-1.199m0-3.328a4.3 4.3 0 0 1 2.068-1.379l5.325-1.628a4.5 4.5 0 0 1 2.48-.044l.803.215l-7.794 4.5m-2.882-1.664A4.3 4.3 0 0 0 10.607 12m3.736 0l7.794 4.5l-.802.215a4.5 4.5 0 0 1-2.48-.043l-5.326-1.629a4.3 4.3 0 0 1-2.068-1.379M14.343 12l-2.882 1.664" />');
3642
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3643
+ xnew$1((unit) => {
3644
+ xnew$1.extend(OutLineTemplate, props);
3645
+ xnew$1('<path d="m7.848 8.25l1.536.887M7.848 8.25a3 3 0 1 1-5.196-3a3 3 0 0 1 5.196 3m1.536.887a2.17 2.17 0 0 1 1.083 1.839q.01.529.14 1.024M9.384 9.137l2.077 1.199M7.848 15.75l1.536-.887m-1.536.887a3 3 0 1 1-5.196 3a3 3 0 0 1 5.196-3m1.536-.887a2.17 2.17 0 0 0 1.083-1.838q.01-.529.14-1.025m-1.223 2.863l2.077-1.199m0-3.328a4.3 4.3 0 0 1 2.068-1.379l5.325-1.628a4.5 4.5 0 0 1 2.48-.044l.803.215l-7.794 4.5m-2.882-1.664A4.3 4.3 0 0 0 10.607 12m3.736 0l7.794 4.5l-.802.215a4.5 4.5 0 0 1-2.48-.043l-5.326-1.629a4.3 4.3 0 0 1-2.068-1.379M14.343 12l-2.882 1.664" />');
3646
+ });
2834
3647
  },
2835
3648
  Server(unit, props) {
2836
- xnew$1.extend(SVGTemplate, props);
2837
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 17.25v-.228a4.5 4.5 0 0 0-.12-1.03l-2.268-9.64a3.375 3.375 0 0 0-3.285-2.602H7.923a3.375 3.375 0 0 0-3.285 2.602l-2.268 9.64a4.5 4.5 0 0 0-.12 1.03v.228m19.5 0a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3m19.5 0a3 3 0 0 0-3-3H5.25a3 3 0 0 0-3 3m16.5 0h.008v.008h-.008zm-3 0h.008v.008h-.008z" />');
3649
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3650
+ xnew$1((unit) => {
3651
+ xnew$1.extend(OutLineTemplate, props);
3652
+ xnew$1('<path d="M21.75 17.25v-.228a4.5 4.5 0 0 0-.12-1.03l-2.268-9.64a3.375 3.375 0 0 0-3.285-2.602H7.923a3.375 3.375 0 0 0-3.285 2.602l-2.268 9.64a4.5 4.5 0 0 0-.12 1.03v.228m19.5 0a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3m19.5 0a3 3 0 0 0-3-3H5.25a3 3 0 0 0-3 3m16.5 0h.008v.008h-.008zm-3 0h.008v.008h-.008z" />');
3653
+ });
2838
3654
  },
2839
3655
  ServerStack(unit, props) {
2840
- xnew$1.extend(SVGTemplate, props);
2841
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 14.25h13.5m-13.5 0a3 3 0 0 1-3-3m3 3a3 3 0 1 0 0 6h13.5a3 3 0 1 0 0-6m-16.5-3a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3m-19.5 0a4.5 4.5 0 0 1 .9-2.7L5.738 5.1a3.38 3.38 0 0 1 2.7-1.35h7.124c1.063 0 2.063.5 2.7 1.35l2.588 3.45a4.5 4.5 0 0 1 .9 2.7m0 0a3 3 0 0 1-3 3m0 3h.008v.008h-.008zm0-6h.008v.008h-.008zm-3 6h.008v.008h-.008zm0-6h.008v.008h-.008z" />');
3656
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3657
+ xnew$1((unit) => {
3658
+ xnew$1.extend(OutLineTemplate, props);
3659
+ xnew$1('<path d="M5.25 14.25h13.5m-13.5 0a3 3 0 0 1-3-3m3 3a3 3 0 1 0 0 6h13.5a3 3 0 1 0 0-6m-16.5-3a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3m-19.5 0a4.5 4.5 0 0 1 .9-2.7L5.738 5.1a3.38 3.38 0 0 1 2.7-1.35h7.124c1.063 0 2.063.5 2.7 1.35l2.588 3.45a4.5 4.5 0 0 1 .9 2.7m0 0a3 3 0 0 1-3 3m0 3h.008v.008h-.008zm0-6h.008v.008h-.008zm-3 6h.008v.008h-.008zm0-6h.008v.008h-.008z" />');
3660
+ });
2842
3661
  },
2843
3662
  Share(unit, props) {
2844
- xnew$1.extend(SVGTemplate, props);
2845
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.217 10.907a2.25 2.25 0 1 0 0 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 1 0 3.935 2.186a2.25 2.25 0 0 0-3.935-2.186m0-12.814a2.25 2.25 0 1 0 3.933-2.185a2.25 2.25 0 0 0-3.933 2.185" />');
3663
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3664
+ xnew$1((unit) => {
3665
+ xnew$1.extend(OutLineTemplate, props);
3666
+ xnew$1('<path d="M7.217 10.907a2.25 2.25 0 1 0 0 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 1 0 3.935 2.186a2.25 2.25 0 0 0-3.935-2.186m0-12.814a2.25 2.25 0 1 0 3.933-2.185a2.25 2.25 0 0 0-3.933 2.185" />');
3667
+ });
2846
3668
  },
2847
3669
  ShieldCheck(unit, props) {
2848
- xnew$1.extend(SVGTemplate, props);
2849
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15L15 9.75m-3-7.036A11.96 11.96 0 0 1 3.598 6A12 12 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623c5.176-1.332 9-6.03 9-11.622c0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285" />');
3670
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3671
+ xnew$1((unit) => {
3672
+ xnew$1.extend(OutLineTemplate, props);
3673
+ xnew$1('<path d="M9 12.75L11.25 15L15 9.75m-3-7.036A11.96 11.96 0 0 1 3.598 6A12 12 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623c5.176-1.332 9-6.03 9-11.622c0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285" />');
3674
+ });
2850
3675
  },
2851
3676
  ShieldExclamation(unit, props) {
2852
- xnew$1.extend(SVGTemplate, props);
2853
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m0-10.036A11.96 11.96 0 0 1 3.598 6A12 12 0 0 0 3 9.75c0 5.592 3.824 10.29 9 11.622c5.176-1.332 9-6.03 9-11.622c0-1.31-.21-2.57-.598-3.75h-.152c-3.196 0-6.1-1.25-8.25-3.286m0 13.036h.008v.008H12z" />');
3677
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3678
+ xnew$1((unit) => {
3679
+ xnew$1.extend(OutLineTemplate, props);
3680
+ xnew$1('<path d="M12 9v3.75m0-10.036A11.96 11.96 0 0 1 3.598 6A12 12 0 0 0 3 9.75c0 5.592 3.824 10.29 9 11.622c5.176-1.332 9-6.03 9-11.622c0-1.31-.21-2.57-.598-3.75h-.152c-3.196 0-6.1-1.25-8.25-3.286m0 13.036h.008v.008H12z" />');
3681
+ });
2854
3682
  },
2855
3683
  ShoppingBag(unit, props) {
2856
- xnew$1.extend(SVGTemplate, props);
2857
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007M8.625 10.5a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m7.5 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3684
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3685
+ xnew$1((unit) => {
3686
+ xnew$1.extend(OutLineTemplate, props);
3687
+ xnew$1('<path d="M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007M8.625 10.5a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m7.5 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3688
+ });
2858
3689
  },
2859
3690
  ShoppingCart(unit, props) {
2860
- xnew$1.extend(SVGTemplate, props);
2861
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.137a60 60 0 0 0-16.536-1.84M7.5 14.25L5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m12.75 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0" />');
3691
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3692
+ xnew$1((unit) => {
3693
+ xnew$1.extend(OutLineTemplate, props);
3694
+ xnew$1('<path d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.137a60 60 0 0 0-16.536-1.84M7.5 14.25L5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m12.75 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0" />');
3695
+ });
2862
3696
  },
2863
3697
  Signal(unit, props) {
2864
- xnew$1.extend(SVGTemplate, props);
2865
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9.348 14.652a3.75 3.75 0 0 1 0-5.304m5.304 0a3.75 3.75 0 0 1 0 5.304m-7.425 2.121a6.75 6.75 0 0 1 0-9.546m9.546 0a6.75 6.75 0 0 1 0 9.546M5.106 18.894c-3.808-3.807-3.808-9.98 0-13.788m13.788 0c3.808 3.807 3.808 9.98 0 13.788M12 12h.008v.008H12zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3698
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3699
+ xnew$1((unit) => {
3700
+ xnew$1.extend(OutLineTemplate, props);
3701
+ xnew$1('<path d="M9.348 14.652a3.75 3.75 0 0 1 0-5.304m5.304 0a3.75 3.75 0 0 1 0 5.304m-7.425 2.121a6.75 6.75 0 0 1 0-9.546m9.546 0a6.75 6.75 0 0 1 0 9.546M5.106 18.894c-3.808-3.807-3.808-9.98 0-13.788m13.788 0c3.808 3.807 3.808 9.98 0 13.788M12 12h.008v.008H12zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0" />');
3702
+ });
2866
3703
  },
2867
3704
  SignalSlash(unit, props) {
2868
- xnew$1.extend(SVGTemplate, props);
2869
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m3 3l8.735 8.735m0 0a.374.374 0 1 1 .53.53m-.53-.53l.53.53m0 0L21 21M14.652 9.348a3.75 3.75 0 0 1 0 5.304m2.121-7.425a6.75 6.75 0 0 1 0 9.546m2.121-11.667c3.808 3.807 3.808 9.98 0 13.788m-9.546-4.242a3.73 3.73 0 0 1-1.06-2.122m-1.061 4.243a6.75 6.75 0 0 1-1.625-6.929m-.496 9.05c-3.068-3.067-3.664-7.67-1.79-11.334M12 12h.008v.008H12z" />');
3705
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3706
+ xnew$1((unit) => {
3707
+ xnew$1.extend(OutLineTemplate, props);
3708
+ xnew$1('<path d="m3 3l8.735 8.735m0 0a.374.374 0 1 1 .53.53m-.53-.53l.53.53m0 0L21 21M14.652 9.348a3.75 3.75 0 0 1 0 5.304m2.121-7.425a6.75 6.75 0 0 1 0 9.546m2.121-11.667c3.808 3.807 3.808 9.98 0 13.788m-9.546-4.242a3.73 3.73 0 0 1-1.06-2.122m-1.061 4.243a6.75 6.75 0 0 1-1.625-6.929m-.496 9.05c-3.068-3.067-3.664-7.67-1.79-11.334M12 12h.008v.008H12z" />');
3709
+ });
2870
3710
  },
2871
3711
  Slash(unit, props) {
2872
- xnew$1.extend(SVGTemplate, props);
2873
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m9 20.248l6-16.5" />');
3712
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3713
+ xnew$1((unit) => {
3714
+ xnew$1.extend(OutLineTemplate, props);
3715
+ xnew$1('<path d="m9 20.248l6-16.5" />');
3716
+ });
2874
3717
  },
2875
3718
  Sparkles(unit, props) {
2876
- xnew$1.extend(SVGTemplate, props);
2877
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09m8.445-7.188L18 9.75l-.259-1.035a3.38 3.38 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.38 3.38 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.38 3.38 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.38 3.38 0 0 0-2.456 2.456m-1.365 11.852L16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183l.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394l-1.183.394a2.25 2.25 0 0 0-1.423 1.423" />');
3719
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3720
+ xnew$1((unit) => {
3721
+ xnew$1.extend(OutLineTemplate, props);
3722
+ xnew$1('<path d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09m8.445-7.188L18 9.75l-.259-1.035a3.38 3.38 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.38 3.38 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.38 3.38 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.38 3.38 0 0 0-2.456 2.456m-1.365 11.852L16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183l.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394l-1.183.394a2.25 2.25 0 0 0-1.423 1.423" />');
3723
+ });
2878
3724
  },
2879
3725
  SpeakerWave(unit, props) {
2880
- xnew$1.extend(SVGTemplate, props);
2881
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9 9 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25z" />');
3726
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3727
+ xnew$1((unit) => {
3728
+ xnew$1.extend(OutLineTemplate, props);
3729
+ xnew$1('<path d="M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9 9 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25z" />');
3730
+ });
2882
3731
  },
2883
3732
  SpeakerXMark(unit, props) {
2884
- xnew$1.extend(SVGTemplate, props);
2885
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M17.25 9.75L19.5 12m0 0l2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25m-10.5-6l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9 9 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25z" />');
3733
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3734
+ xnew$1((unit) => {
3735
+ xnew$1.extend(OutLineTemplate, props);
3736
+ xnew$1('<path d="M17.25 9.75L19.5 12m0 0l2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25m-10.5-6l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9 9 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25z" />');
3737
+ });
2886
3738
  },
2887
3739
  Square2Stack(unit, props) {
2888
- xnew$1.extend(SVGTemplate, props);
2889
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v8.25A2.25 2.25 0 0 0 6 16.5h2.25m8.25-8.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-7.5A2.25 2.25 0 0 1 8.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 0 0-2.25 2.25v6" />');
3740
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3741
+ xnew$1((unit) => {
3742
+ xnew$1.extend(OutLineTemplate, props);
3743
+ xnew$1('<path d="M16.5 8.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v8.25A2.25 2.25 0 0 0 6 16.5h2.25m8.25-8.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-7.5A2.25 2.25 0 0 1 8.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 0 0-2.25 2.25v6" />');
3744
+ });
2890
3745
  },
2891
3746
  Square3Stack3d(unit, props) {
2892
- xnew$1.extend(SVGTemplate, props);
2893
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6.429 9.75L2.25 12l4.179 2.25m0-4.5l5.571 3l5.571-3m-11.142 0L2.25 7.5L12 2.25l9.75 5.25l-4.179 2.25m0 0L21.75 12l-4.179 2.25m0 0l4.179 2.25L12 21.75L2.25 16.5l4.179-2.25m11.142 0l-5.571 3l-5.571-3" />');
3747
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3748
+ xnew$1((unit) => {
3749
+ xnew$1.extend(OutLineTemplate, props);
3750
+ xnew$1('<path d="M6.429 9.75L2.25 12l4.179 2.25m0-4.5l5.571 3l5.571-3m-11.142 0L2.25 7.5L12 2.25l9.75 5.25l-4.179 2.25m0 0L21.75 12l-4.179 2.25m0 0l4.179 2.25L12 21.75L2.25 16.5l4.179-2.25m11.142 0l-5.571 3l-5.571-3" />');
3751
+ });
2894
3752
  },
2895
3753
  Squares2x2(unit, props) {
2896
- xnew$1.extend(SVGTemplate, props);
2897
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25zm0 9.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18zM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25zm0 9.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18z" />');
3754
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3755
+ xnew$1((unit) => {
3756
+ xnew$1.extend(OutLineTemplate, props);
3757
+ xnew$1('<path d="M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25zm0 9.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18zM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25zm0 9.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18z" />');
3758
+ });
2898
3759
  },
2899
3760
  SquaresPlus(unit, props) {
2900
- xnew$1.extend(SVGTemplate, props);
2901
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 16.875h3.375m0 0h3.375m-3.375 0V13.5m0 3.375v3.375M6 10.5h2.25a2.25 2.25 0 0 0 2.25-2.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v2.25A2.25 2.25 0 0 0 6 10.5m0 9.75h2.25A2.25 2.25 0 0 0 10.5 18v-2.25a2.25 2.25 0 0 0-2.25-2.25H6a2.25 2.25 0 0 0-2.25 2.25V18A2.25 2.25 0 0 0 6 20.25m9.75-9.75H18a2.25 2.25 0 0 0 2.25-2.25V6A2.25 2.25 0 0 0 18 3.75h-2.25A2.25 2.25 0 0 0 13.5 6v2.25a2.25 2.25 0 0 0 2.25 2.25" />');
3761
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3762
+ xnew$1((unit) => {
3763
+ xnew$1.extend(OutLineTemplate, props);
3764
+ xnew$1('<path d="M13.5 16.875h3.375m0 0h3.375m-3.375 0V13.5m0 3.375v3.375M6 10.5h2.25a2.25 2.25 0 0 0 2.25-2.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v2.25A2.25 2.25 0 0 0 6 10.5m0 9.75h2.25A2.25 2.25 0 0 0 10.5 18v-2.25a2.25 2.25 0 0 0-2.25-2.25H6a2.25 2.25 0 0 0-2.25 2.25V18A2.25 2.25 0 0 0 6 20.25m9.75-9.75H18a2.25 2.25 0 0 0 2.25-2.25V6A2.25 2.25 0 0 0 18 3.75h-2.25A2.25 2.25 0 0 0 13.5 6v2.25a2.25 2.25 0 0 0 2.25 2.25" />');
3765
+ });
2902
3766
  },
2903
3767
  Star(unit, props) {
2904
- xnew$1.extend(SVGTemplate, props);
2905
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.56.56 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.56.56 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.56.56 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.56.56 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.56.56 0 0 0 .475-.345z" />');
3768
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3769
+ xnew$1((unit) => {
3770
+ xnew$1.extend(OutLineTemplate, props);
3771
+ xnew$1('<path d="M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.56.56 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.56.56 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.56.56 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.56.56 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.56.56 0 0 0 .475-.345z" />');
3772
+ });
2906
3773
  },
2907
3774
  Stop(unit, props) {
2908
- xnew$1.extend(SVGTemplate, props);
2909
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25z" />');
3775
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3776
+ xnew$1((unit) => {
3777
+ xnew$1.extend(OutLineTemplate, props);
3778
+ xnew$1('<path d="M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25z" />');
3779
+ });
2910
3780
  },
2911
3781
  StopCircle(unit, props) {
2912
- xnew$1.extend(SVGTemplate, props);
2913
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
2914
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 9.563C9 9.252 9.252 9 9.563 9h4.874c.311 0 .563.252.563.563v4.874a.563.563 0 0 1-.562.563H9.561A.56.56 0 0 1 9 14.438z" />');
3782
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3783
+ xnew$1((unit) => {
3784
+ xnew$1.extend(OutLineTemplate, props);
3785
+ xnew$1('<path d="M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3786
+ xnew$1('<path d="M9 9.563C9 9.252 9.252 9 9.563 9h4.874c.311 0 .563.252.563.563v4.874a.563.563 0 0 1-.562.563H9.561A.56.56 0 0 1 9 14.438z" />');
3787
+ });
2915
3788
  },
2916
3789
  Strikethrough(unit, props) {
2917
- xnew$1.extend(SVGTemplate, props);
2918
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 12a9 9 0 0 1-.318-.079c-1.585-.424-2.904-1.247-3.76-2.236c-.873-1.009-1.265-2.19-.968-3.301c.59-2.2 3.663-3.29 6.863-2.432A8.2 8.2 0 0 1 16.5 5.21M6.42 17.812c.857.989 2.176 1.811 3.761 2.236c3.2.858 6.274-.23 6.863-2.431c.233-.868.044-1.779-.465-2.617M3.75 12h16.5" />');
3790
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3791
+ xnew$1((unit) => {
3792
+ xnew$1.extend(OutLineTemplate, props);
3793
+ xnew$1('<path d="M12 12a9 9 0 0 1-.318-.079c-1.585-.424-2.904-1.247-3.76-2.236c-.873-1.009-1.265-2.19-.968-3.301c.59-2.2 3.663-3.29 6.863-2.432A8.2 8.2 0 0 1 16.5 5.21M6.42 17.812c.857.989 2.176 1.811 3.761 2.236c3.2.858 6.274-.23 6.863-2.431c.233-.868.044-1.779-.465-2.617M3.75 12h16.5" />');
3794
+ });
2919
3795
  },
2920
3796
  Sun(unit, props) {
2921
- xnew$1.extend(SVGTemplate, props);
2922
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0a3.75 3.75 0 0 1 7.5 0" />');
3797
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3798
+ xnew$1((unit) => {
3799
+ xnew$1.extend(OutLineTemplate, props);
3800
+ xnew$1('<path d="M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0a3.75 3.75 0 0 1 7.5 0" />');
3801
+ });
2923
3802
  },
2924
3803
  Swatch(unit, props) {
2925
- xnew$1.extend(SVGTemplate, props);
2926
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.098 19.902a3.75 3.75 0 0 0 5.304 0l6.401-6.402M6.75 21A3.75 3.75 0 0 1 3 17.25V4.125C3 3.504 3.504 3 4.125 3h5.25c.621 0 1.125.504 1.125 1.125v4.072M6.75 21a3.75 3.75 0 0 0 3.75-3.75V8.197M6.75 21h13.125c.621 0 1.125-.504 1.125-1.125v-5.25c0-.621-.504-1.125-1.125-1.125h-4.072M10.5 8.197l2.88-2.88a1.124 1.124 0 0 1 1.59 0l3.712 3.713c.44.44.44 1.152 0 1.59l-2.879 2.88M6.75 17.25h.008v.008H6.75z" />');
3804
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3805
+ xnew$1((unit) => {
3806
+ xnew$1.extend(OutLineTemplate, props);
3807
+ xnew$1('<path d="M4.098 19.902a3.75 3.75 0 0 0 5.304 0l6.401-6.402M6.75 21A3.75 3.75 0 0 1 3 17.25V4.125C3 3.504 3.504 3 4.125 3h5.25c.621 0 1.125.504 1.125 1.125v4.072M6.75 21a3.75 3.75 0 0 0 3.75-3.75V8.197M6.75 21h13.125c.621 0 1.125-.504 1.125-1.125v-5.25c0-.621-.504-1.125-1.125-1.125h-4.072M10.5 8.197l2.88-2.88a1.124 1.124 0 0 1 1.59 0l3.712 3.713c.44.44.44 1.152 0 1.59l-2.879 2.88M6.75 17.25h.008v.008H6.75z" />');
3808
+ });
2927
3809
  },
2928
3810
  TableCells(unit, props) {
2929
- xnew$1.extend(SVGTemplate, props);
2930
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h7.5c.621 0 1.125-.504 1.125-1.125m-9.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-7.5A1.125 1.125 0 0 1 12 18.375m9.75-12.75c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125m19.5 0v1.5c0 .621-.504 1.125-1.125 1.125M2.25 5.625v1.5c0 .621.504 1.125 1.125 1.125m0 0h17.25m-17.25 0h7.5c.621 0 1.125.504 1.125 1.125M3.375 8.25c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m17.25-3.75h-7.5c-.621 0-1.125.504-1.125 1.125m8.625-1.125c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M12 10.875v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125M13.125 12h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125M20.625 12c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5M12 14.625v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 14.625c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m0 1.5v-1.5m0 0c0-.621.504-1.125 1.125-1.125m0 0h7.5" />');
3811
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3812
+ xnew$1((unit) => {
3813
+ xnew$1.extend(OutLineTemplate, props);
3814
+ xnew$1('<path d="M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h7.5c.621 0 1.125-.504 1.125-1.125m-9.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-7.5A1.125 1.125 0 0 1 12 18.375m9.75-12.75c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125m19.5 0v1.5c0 .621-.504 1.125-1.125 1.125M2.25 5.625v1.5c0 .621.504 1.125 1.125 1.125m0 0h17.25m-17.25 0h7.5c.621 0 1.125.504 1.125 1.125M3.375 8.25c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m17.25-3.75h-7.5c-.621 0-1.125.504-1.125 1.125m8.625-1.125c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M12 10.875v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125M13.125 12h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125M20.625 12c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5M12 14.625v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 14.625c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m0 1.5v-1.5m0 0c0-.621.504-1.125 1.125-1.125m0 0h7.5" />');
3815
+ });
2931
3816
  },
2932
3817
  Tag(unit, props) {
2933
- xnew$1.extend(SVGTemplate, props);
2934
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.1 18.1 0 0 0 5.224-5.223c.54-.827.368-1.908-.33-2.607l-9.583-9.58A2.25 2.25 0 0 0 9.568 3" />');
2935
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6 6h.008v.008H6z" />');
3818
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3819
+ xnew$1((unit) => {
3820
+ xnew$1.extend(OutLineTemplate, props);
3821
+ xnew$1('<path d="M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.1 18.1 0 0 0 5.224-5.223c.54-.827.368-1.908-.33-2.607l-9.583-9.58A2.25 2.25 0 0 0 9.568 3" />');
3822
+ xnew$1('<path d="M6 6h.008v.008H6z" />');
3823
+ });
2936
3824
  },
2937
3825
  Ticket(unit, props) {
2938
- xnew$1.extend(SVGTemplate, props);
2939
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 0 1 0 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 0 1 0-5.198V6.375c0-.621-.504-1.125-1.125-1.125z" />');
3826
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3827
+ xnew$1((unit) => {
3828
+ xnew$1.extend(OutLineTemplate, props);
3829
+ xnew$1('<path d="M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 0 1 0 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 0 1 0-5.198V6.375c0-.621-.504-1.125-1.125-1.125z" />');
3830
+ });
2940
3831
  },
2941
3832
  Trash(unit, props) {
2942
- xnew$1.extend(SVGTemplate, props);
2943
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21q.512.078 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48 48 0 0 0-3.478-.397m-12 .562q.51-.088 1.022-.165m0 0a48 48 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a52 52 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a49 49 0 0 0-7.5 0" />');
3833
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3834
+ xnew$1((unit) => {
3835
+ xnew$1.extend(OutLineTemplate, props);
3836
+ xnew$1('<path d="m14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21q.512.078 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48 48 0 0 0-3.478-.397m-12 .562q.51-.088 1.022-.165m0 0a48 48 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a52 52 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a49 49 0 0 0-7.5 0" />');
3837
+ });
2944
3838
  },
2945
3839
  Trophy(unit, props) {
2946
- xnew$1.extend(SVGTemplate, props);
2947
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 18.75h-9m9 0a3 3 0 0 1 3 3h-15a3 3 0 0 1 3-3m9 0v-3.375c0-.621-.503-1.125-1.125-1.125h-.871M7.5 18.75v-3.375c0-.621.504-1.125 1.125-1.125h.872m5.007 0H9.497m5.007 0a7.45 7.45 0 0 1-.982-3.172M9.497 14.25a7.45 7.45 0 0 0 .981-3.172M5.25 4.236q-1.473.215-2.916.52A6 6 0 0 0 7.73 9.728M5.25 4.236V4.5c0 2.108.966 3.99 2.48 5.228M5.25 4.236V2.721C7.456 2.41 9.71 2.25 12 2.25s4.545.16 6.75.47v1.516M7.73 9.728a6.7 6.7 0 0 0 2.748 1.35m8.272-6.842V4.5c0 2.108-.966 3.99-2.48 5.228m2.48-5.492a46 46 0 0 1 2.916.52a6 6 0 0 1-5.395 4.972m0 0a6.7 6.7 0 0 1-2.749 1.35m0 0a6.8 6.8 0 0 1-3.044 0" />');
3840
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3841
+ xnew$1((unit) => {
3842
+ xnew$1.extend(OutLineTemplate, props);
3843
+ xnew$1('<path d="M16.5 18.75h-9m9 0a3 3 0 0 1 3 3h-15a3 3 0 0 1 3-3m9 0v-3.375c0-.621-.503-1.125-1.125-1.125h-.871M7.5 18.75v-3.375c0-.621.504-1.125 1.125-1.125h.872m5.007 0H9.497m5.007 0a7.45 7.45 0 0 1-.982-3.172M9.497 14.25a7.45 7.45 0 0 0 .981-3.172M5.25 4.236q-1.473.215-2.916.52A6 6 0 0 0 7.73 9.728M5.25 4.236V4.5c0 2.108.966 3.99 2.48 5.228M5.25 4.236V2.721C7.456 2.41 9.71 2.25 12 2.25s4.545.16 6.75.47v1.516M7.73 9.728a6.7 6.7 0 0 0 2.748 1.35m8.272-6.842V4.5c0 2.108-.966 3.99-2.48 5.228m2.48-5.492a46 46 0 0 1 2.916.52a6 6 0 0 1-5.395 4.972m0 0a6.7 6.7 0 0 1-2.749 1.35m0 0a6.8 6.8 0 0 1-3.044 0" />');
3844
+ });
2948
3845
  },
2949
3846
  Truck(unit, props) {
2950
- xnew$1.extend(SVGTemplate, props);
2951
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.9 17.9 0 0 0-3.213-9.193a2.06 2.06 0 0 0-1.58-.86H14.25M16.5 18.75h-2.25m0-11.177v-.958c0-.568-.422-1.048-.987-1.106a48.6 48.6 0 0 0-10.026 0a1.106 1.106 0 0 0-.987 1.106v7.635m12-6.677v6.677m0 4.5v-4.5m0 0h-12" />');
3847
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3848
+ xnew$1((unit) => {
3849
+ xnew$1.extend(OutLineTemplate, props);
3850
+ xnew$1('<path d="M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.9 17.9 0 0 0-3.213-9.193a2.06 2.06 0 0 0-1.58-.86H14.25M16.5 18.75h-2.25m0-11.177v-.958c0-.568-.422-1.048-.987-1.106a48.6 48.6 0 0 0-10.026 0a1.106 1.106 0 0 0-.987 1.106v7.635m12-6.677v6.677m0 4.5v-4.5m0 0h-12" />');
3851
+ });
2952
3852
  },
2953
3853
  Tv(unit, props) {
2954
- xnew$1.extend(SVGTemplate, props);
2955
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6 20.25h12m-7.5-3v3m3-3v3m-10.125-3h17.25c.621 0 1.125-.504 1.125-1.125V4.875c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125" />');
3854
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3855
+ xnew$1((unit) => {
3856
+ xnew$1.extend(OutLineTemplate, props);
3857
+ xnew$1('<path d="M6 20.25h12m-7.5-3v3m3-3v3m-10.125-3h17.25c.621 0 1.125-.504 1.125-1.125V4.875c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125" />');
3858
+ });
2956
3859
  },
2957
3860
  Underline(unit, props) {
2958
- xnew$1.extend(SVGTemplate, props);
2959
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M17.995 3.744v7.5a6 6 0 1 1-12 0v-7.5m-2.25 16.502h16.5" />');
3861
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3862
+ xnew$1((unit) => {
3863
+ xnew$1.extend(OutLineTemplate, props);
3864
+ xnew$1('<path d="M17.995 3.744v7.5a6 6 0 1 1-12 0v-7.5m-2.25 16.502h16.5" />');
3865
+ });
2960
3866
  },
2961
3867
  User(unit, props) {
2962
- xnew$1.extend(SVGTemplate, props);
2963
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 6a3.75 3.75 0 1 1-7.5 0a3.75 3.75 0 0 1 7.5 0M4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.9 17.9 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632" />');
3868
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3869
+ xnew$1((unit) => {
3870
+ xnew$1.extend(OutLineTemplate, props);
3871
+ xnew$1('<path d="M15.75 6a3.75 3.75 0 1 1-7.5 0a3.75 3.75 0 0 1 7.5 0M4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.9 17.9 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632" />');
3872
+ });
2964
3873
  },
2965
3874
  UserCircle(unit, props) {
2966
- xnew$1.extend(SVGTemplate, props);
2967
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M17.982 18.725A7.49 7.49 0 0 0 12 15.75a7.49 7.49 0 0 0-5.982 2.975m11.964 0a9 9 0 1 0-11.963 0m11.962 0A8.97 8.97 0 0 1 12 21a8.97 8.97 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
3875
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3876
+ xnew$1((unit) => {
3877
+ xnew$1.extend(OutLineTemplate, props);
3878
+ xnew$1('<path d="M17.982 18.725A7.49 7.49 0 0 0 12 15.75a7.49 7.49 0 0 0-5.982 2.975m11.964 0a9 9 0 1 0-11.963 0m11.962 0A8.97 8.97 0 0 1 12 21a8.97 8.97 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
3879
+ });
2968
3880
  },
2969
3881
  UserGroup(unit, props) {
2970
- xnew$1.extend(SVGTemplate, props);
2971
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M18 18.72a9.1 9.1 0 0 0 3.741-.479q.01-.12.01-.241a3 3 0 0 0-4.692-2.478m.94 3.197l.001.031q0 .337-.037.666A11.94 11.94 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6 6 0 0 1 6 18.719m12 0a5.97 5.97 0 0 0-.941-3.197m0 0A6 6 0 0 0 12 12.75a6 6 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72a9 9 0 0 0 3.74.477m.94-3.197a5.97 5.97 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0m6 3a2.25 2.25 0 1 1-4.5 0a2.25 2.25 0 0 1 4.5 0m-13.5 0a2.25 2.25 0 1 1-4.5 0a2.25 2.25 0 0 1 4.5 0" />');
3882
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3883
+ xnew$1((unit) => {
3884
+ xnew$1.extend(OutLineTemplate, props);
3885
+ xnew$1('<path d="M18 18.72a9.1 9.1 0 0 0 3.741-.479q.01-.12.01-.241a3 3 0 0 0-4.692-2.478m.94 3.197l.001.031q0 .337-.037.666A11.94 11.94 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6 6 0 0 1 6 18.719m12 0a5.97 5.97 0 0 0-.941-3.197m0 0A6 6 0 0 0 12 12.75a6 6 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72a9 9 0 0 0 3.74.477m.94-3.197a5.97 5.97 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0m6 3a2.25 2.25 0 1 1-4.5 0a2.25 2.25 0 0 1 4.5 0m-13.5 0a2.25 2.25 0 1 1-4.5 0a2.25 2.25 0 0 1 4.5 0" />');
3886
+ });
2972
3887
  },
2973
3888
  UserMinus(unit, props) {
2974
- xnew$1.extend(SVGTemplate, props);
2975
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M22 10.5h-6m-2.25-4.125a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0M4 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.3 12.3 0 0 1 10.374 21C8.043 21 5.862 20.355 4 19.234" />');
3889
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3890
+ xnew$1((unit) => {
3891
+ xnew$1.extend(OutLineTemplate, props);
3892
+ xnew$1('<path d="M22 10.5h-6m-2.25-4.125a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0M4 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.3 12.3 0 0 1 10.374 21C8.043 21 5.862 20.355 4 19.234" />');
3893
+ });
2976
3894
  },
2977
3895
  UserPlus(unit, props) {
2978
- xnew$1.extend(SVGTemplate, props);
2979
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M18 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0M3 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.3 12.3 0 0 1 9.374 21C7.043 21 4.862 20.355 3 19.234" />');
3896
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3897
+ xnew$1((unit) => {
3898
+ xnew$1.extend(OutLineTemplate, props);
3899
+ xnew$1('<path d="M18 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0M3 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.3 12.3 0 0 1 9.374 21C7.043 21 4.862 20.355 3 19.234" />');
3900
+ });
2980
3901
  },
2981
3902
  Users(unit, props) {
2982
- xnew$1.extend(SVGTemplate, props);
2983
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M15 19.128a9.4 9.4 0 0 0 2.625.372a9.3 9.3 0 0 0 4.121-.952q.004-.086.004-.173a4.125 4.125 0 0 0-7.536-2.32M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.3 12.3 0 0 1 8.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0 1 11.964-3.07M12 6.375a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0m8.25 2.25a2.625 2.625 0 1 1-5.25 0a2.625 2.625 0 0 1 5.25 0" />');
3903
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3904
+ xnew$1((unit) => {
3905
+ xnew$1.extend(OutLineTemplate, props);
3906
+ xnew$1('<path d="M15 19.128a9.4 9.4 0 0 0 2.625.372a9.3 9.3 0 0 0 4.121-.952q.004-.086.004-.173a4.125 4.125 0 0 0-7.536-2.32M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.3 12.3 0 0 1 8.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0 1 11.964-3.07M12 6.375a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0m8.25 2.25a2.625 2.625 0 1 1-5.25 0a2.625 2.625 0 0 1 5.25 0" />');
3907
+ });
2984
3908
  },
2985
3909
  Variable(unit, props) {
2986
- xnew$1.extend(SVGTemplate, props);
2987
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.745 3A23.9 23.9 0 0 0 3 12c0 3.183.62 6.22 1.745 9M19.5 3c.967 2.78 1.5 5.817 1.5 9s-.533 6.22-1.5 9M8.25 8.885l1.444-.89a.75.75 0 0 1 1.105.402l2.402 7.206a.75.75 0 0 0 1.104.401l1.445-.889m-8.25.75l.213.09a1.69 1.69 0 0 0 2.062-.617l4.45-6.676a1.69 1.69 0 0 1 2.062-.618l.213.09" />');
3910
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3911
+ xnew$1((unit) => {
3912
+ xnew$1.extend(OutLineTemplate, props);
3913
+ xnew$1('<path d="M4.745 3A23.9 23.9 0 0 0 3 12c0 3.183.62 6.22 1.745 9M19.5 3c.967 2.78 1.5 5.817 1.5 9s-.533 6.22-1.5 9M8.25 8.885l1.444-.89a.75.75 0 0 1 1.105.402l2.402 7.206a.75.75 0 0 0 1.104.401l1.445-.889m-8.25.75l.213.09a1.69 1.69 0 0 0 2.062-.617l4.45-6.676a1.69 1.69 0 0 1 2.062-.618l.213.09" />');
3914
+ });
2988
3915
  },
2989
3916
  VideoCamera(unit, props) {
2990
- xnew$1.extend(SVGTemplate, props);
2991
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m15.75 10.5l4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25" />');
3917
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3918
+ xnew$1((unit) => {
3919
+ xnew$1.extend(OutLineTemplate, props);
3920
+ xnew$1('<path d="m15.75 10.5l4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25" />');
3921
+ });
2992
3922
  },
2993
3923
  VideoCameraSlash(unit, props) {
2994
- xnew$1.extend(SVGTemplate, props);
2995
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m15.75 10.5l4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M12 18.75H4.5a2.25 2.25 0 0 1-2.25-2.25V9m12.841 9.091L16.5 19.5m-1.409-1.409c.407-.407.659-.97.659-1.591v-9a2.25 2.25 0 0 0-2.25-2.25h-9c-.621 0-1.184.252-1.591.659m12.182 12.182L2.909 5.909M1.5 4.5l1.409 1.409" />');
3924
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3925
+ xnew$1((unit) => {
3926
+ xnew$1.extend(OutLineTemplate, props);
3927
+ xnew$1('<path d="m15.75 10.5l4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M12 18.75H4.5a2.25 2.25 0 0 1-2.25-2.25V9m12.841 9.091L16.5 19.5m-1.409-1.409c.407-.407.659-.97.659-1.591v-9a2.25 2.25 0 0 0-2.25-2.25h-9c-.621 0-1.184.252-1.591.659m12.182 12.182L2.909 5.909M1.5 4.5l1.409 1.409" />');
3928
+ });
2996
3929
  },
2997
3930
  ViewColumns(unit, props) {
2998
- xnew$1.extend(SVGTemplate, props);
2999
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M9 4.5v15m6-15v15m-10.875 0h15.75c.621 0 1.125-.504 1.125-1.125V5.625c0-.621-.504-1.125-1.125-1.125H4.125C3.504 4.5 3 5.004 3 5.625v12.75c0 .621.504 1.125 1.125 1.125" />');
3931
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3932
+ xnew$1((unit) => {
3933
+ xnew$1.extend(OutLineTemplate, props);
3934
+ xnew$1('<path d="M9 4.5v15m6-15v15m-10.875 0h15.75c.621 0 1.125-.504 1.125-1.125V5.625c0-.621-.504-1.125-1.125-1.125H4.125C3.504 4.5 3 5.004 3 5.625v12.75c0 .621.504 1.125 1.125 1.125" />');
3935
+ });
3000
3936
  },
3001
3937
  ViewfinderCircle(unit, props) {
3002
- xnew$1.extend(SVGTemplate, props);
3003
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 3.75H6A2.25 2.25 0 0 0 3.75 6v1.5M16.5 3.75H18A2.25 2.25 0 0 1 20.25 6v1.5m0 9V18A2.25 2.25 0 0 1 18 20.25h-1.5m-9 0H6A2.25 2.25 0 0 1 3.75 18v-1.5M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
3938
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3939
+ xnew$1((unit) => {
3940
+ xnew$1.extend(OutLineTemplate, props);
3941
+ xnew$1('<path d="M7.5 3.75H6A2.25 2.25 0 0 0 3.75 6v1.5M16.5 3.75H18A2.25 2.25 0 0 1 20.25 6v1.5m0 9V18A2.25 2.25 0 0 1 18 20.25h-1.5m-9 0H6A2.25 2.25 0 0 1 3.75 18v-1.5M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0" />');
3942
+ });
3004
3943
  },
3005
3944
  Wallet(unit, props) {
3006
- xnew$1.extend(SVGTemplate, props);
3007
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21 12a2.25 2.25 0 0 0-2.25-2.25H15a3 3 0 1 1-6 0H5.25A2.25 2.25 0 0 0 3 12m18 0v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 9m18 0V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v3" />');
3945
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3946
+ xnew$1((unit) => {
3947
+ xnew$1.extend(OutLineTemplate, props);
3948
+ xnew$1('<path d="M21 12a2.25 2.25 0 0 0-2.25-2.25H15a3 3 0 1 1-6 0H5.25A2.25 2.25 0 0 0 3 12m18 0v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 9m18 0V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v3" />');
3949
+ });
3008
3950
  },
3009
3951
  Wifi(unit, props) {
3010
- xnew$1.extend(SVGTemplate, props);
3011
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M8.288 15.038a5.25 5.25 0 0 1 7.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0M12.53 18.22l-.53.53l-.53-.53a.75.75 0 0 1 1.06 0" />');
3952
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3953
+ xnew$1((unit) => {
3954
+ xnew$1.extend(OutLineTemplate, props);
3955
+ xnew$1('<path d="M8.288 15.038a5.25 5.25 0 0 1 7.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0M12.53 18.22l-.53.53l-.53-.53a.75.75 0 0 1 1.06 0" />');
3956
+ });
3012
3957
  },
3013
3958
  Window(unit, props) {
3014
- xnew$1.extend(SVGTemplate, props);
3015
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M3 8.25V18a2.25 2.25 0 0 0 2.25 2.25h13.5A2.25 2.25 0 0 0 21 18V8.25m-18 0V6a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 6v2.25m-18 0h18M5.25 6h.008v.008H5.25zM7.5 6h.008v.008H7.5zm2.25 0h.008v.008H9.75z" />');
3959
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3960
+ xnew$1((unit) => {
3961
+ xnew$1.extend(OutLineTemplate, props);
3962
+ xnew$1('<path d="M3 8.25V18a2.25 2.25 0 0 0 2.25 2.25h13.5A2.25 2.25 0 0 0 21 18V8.25m-18 0V6a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 6v2.25m-18 0h18M5.25 6h.008v.008H5.25zM7.5 6h.008v.008H7.5zm2.25 0h.008v.008H9.75z" />');
3963
+ });
3016
3964
  },
3017
3965
  Wrench(unit, props) {
3018
- xnew$1.extend(SVGTemplate, props);
3019
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75a4.5 4.5 0 0 1-4.884 4.484c-1.076-.091-2.264.071-2.95.904l-7.152 8.684a2.548 2.548 0 1 1-3.586-3.586l8.684-7.151c.833-.687.995-1.875.904-2.95a4.5 4.5 0 0 1 6.336-4.486l-3.276 3.275a3 3 0 0 0 2.25 2.25l3.276-3.276c.256.565.398 1.192.398 1.852" />');
3020
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M4.867 19.125h.008v.008h-.008z" />');
3966
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3967
+ xnew$1((unit) => {
3968
+ xnew$1.extend(OutLineTemplate, props);
3969
+ xnew$1('<path d="M21.75 6.75a4.5 4.5 0 0 1-4.884 4.484c-1.076-.091-2.264.071-2.95.904l-7.152 8.684a2.548 2.548 0 1 1-3.586-3.586l8.684-7.151c.833-.687.995-1.875.904-2.95a4.5 4.5 0 0 1 6.336-4.486l-3.276 3.275a3 3 0 0 0 2.25 2.25l3.276-3.276c.256.565.398 1.192.398 1.852" />');
3970
+ xnew$1('<path d="M4.867 19.125h.008v.008h-.008z" />');
3971
+ });
3021
3972
  },
3022
3973
  WrenchScrewdriver(unit, props) {
3023
- xnew$1.extend(SVGTemplate, props);
3024
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M11.42 15.17L17.25 21A2.652 2.652 0 0 0 21 17.25l-5.877-5.877M11.42 15.17l2.496-3.03c.317-.384.74-.626 1.208-.766M11.42 15.17l-4.655 5.653a2.548 2.548 0 1 1-3.586-3.586l6.837-5.63m5.108-.233c.55-.164 1.163-.188 1.743-.14q.19.017.384.017a4.5 4.5 0 0 0 4.102-6.352l-3.276 3.276a3 3 0 0 1-2.25-2.25l3.276-3.276a4.5 4.5 0 0 0-6.336 4.486c.091 1.076-.071 2.264-.904 2.95l-.102.085m-1.745 1.437L5.909 7.5H4.5L2.25 3.75l1.5-1.5L7.5 4.5v1.409l4.26 4.26m-1.745 1.437l1.745-1.437m6.615 8.206L15.75 15.75M4.867 19.125h.008v.008h-.008z" />');
3974
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3975
+ xnew$1((unit) => {
3976
+ xnew$1.extend(OutLineTemplate, props);
3977
+ xnew$1('<path d="M11.42 15.17L17.25 21A2.652 2.652 0 0 0 21 17.25l-5.877-5.877M11.42 15.17l2.496-3.03c.317-.384.74-.626 1.208-.766M11.42 15.17l-4.655 5.653a2.548 2.548 0 1 1-3.586-3.586l6.837-5.63m5.108-.233c.55-.164 1.163-.188 1.743-.14q.19.017.384.017a4.5 4.5 0 0 0 4.102-6.352l-3.276 3.276a3 3 0 0 1-2.25-2.25l3.276-3.276a4.5 4.5 0 0 0-6.336 4.486c.091 1.076-.071 2.264-.904 2.95l-.102.085m-1.745 1.437L5.909 7.5H4.5L2.25 3.75l1.5-1.5L7.5 4.5v1.409l4.26 4.26m-1.745 1.437l1.745-1.437m6.615 8.206L15.75 15.75M4.867 19.125h.008v.008h-.008z" />');
3978
+ });
3025
3979
  },
3026
3980
  XCircle(unit, props) {
3027
- xnew$1.extend(SVGTemplate, props);
3028
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="m9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3981
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3982
+ xnew$1((unit) => {
3983
+ xnew$1.extend(OutLineTemplate, props);
3984
+ xnew$1('<path d="m9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0" />');
3985
+ });
3029
3986
  },
3030
3987
  XMark(unit, props) {
3031
- xnew$1.extend(SVGTemplate, props);
3032
- xnew$1('<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />');
3988
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%;">`);
3989
+ xnew$1((unit) => {
3990
+ xnew$1.extend(OutLineTemplate, props);
3991
+ xnew$1('<path d="M6 18L18 6M6 6l12 12" />');
3992
+ });
3033
3993
  }
3034
3994
  };
3035
3995
 
3996
+ function VolumeController(unit, {} = {}) {
3997
+ xnew$1.nest(`<div style="position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: flex-end; pointer-events: none; container-type: size;">`);
3998
+ xnew$1.extend(PointerEvent);
3999
+ unit.on('-pointerdown', ({ event }) => event.stopPropagation());
4000
+ const slider = xnew$1(`<input type="range" min="0" max="100" value="${master.gain.value * 100}"
4001
+ style="display: none; width: calc(96cqw - 100cqh); margin: 0 2cqw; cursor: pointer; pointer-events: auto;"
4002
+ >`);
4003
+ unit.on('-click:outside', () => slider.element.style.display = 'none');
4004
+ const button = xnew$1((button) => {
4005
+ xnew$1.nest('<div style="position: relative; width: 100cqh; height: 100cqh; cursor: pointer; pointer-events: auto;">');
4006
+ let icon = xnew$1(master.gain.value > 0 ? icons.SpeakerWave : icons.SpeakerXMark);
4007
+ return {
4008
+ update() {
4009
+ icon === null || icon === void 0 ? void 0 : icon.finalize();
4010
+ icon = xnew$1(master.gain.value > 0 ? icons.SpeakerWave : icons.SpeakerXMark);
4011
+ }
4012
+ };
4013
+ });
4014
+ button.on('click', () => slider.element.style.display = slider.element.style.display !== 'none' ? 'none' : 'flex');
4015
+ slider.on('input', (event) => {
4016
+ master.gain.value = parseFloat(event.target.value) / 100;
4017
+ button.update();
4018
+ });
4019
+ }
4020
+
3036
4021
  const basics = {
3037
4022
  Screen,
3038
4023
  PointerEvent,
@@ -3047,12 +4032,40 @@ const basics = {
3047
4032
  TabFrame,
3048
4033
  TabButton,
3049
4034
  TabContent,
4035
+ TextStream,
3050
4036
  DragFrame,
3051
4037
  DragTarget,
3052
4038
  AnalogStick,
3053
4039
  DirectionalPad,
3054
4040
  VolumeController
3055
4041
  };
3056
- const xnew = Object.assign(xnew$1, { basics, icons });
4042
+ const audio = {
4043
+ load(path) {
4044
+ const music = new AudioFile(path);
4045
+ const object = {
4046
+ play(options) {
4047
+ const unit = xnew();
4048
+ if (music.played === null) {
4049
+ music.play(options);
4050
+ unit.on('-finalize', () => music.pause({ fade: options.fade }));
4051
+ }
4052
+ },
4053
+ pause(options) {
4054
+ music.pause(options);
4055
+ }
4056
+ };
4057
+ return xnew.promise(music.promise).then(() => object);
4058
+ },
4059
+ synthesizer(props) {
4060
+ return new Synthesizer(props);
4061
+ },
4062
+ get volume() {
4063
+ return master.gain.value;
4064
+ },
4065
+ set volume(value) {
4066
+ master.gain.value = value;
4067
+ }
4068
+ };
4069
+ const xnew = Object.assign(xnew$1, { basics, audio, icons });
3057
4070
 
3058
4071
  export { xnew as default };