@flozy/editor 5.3.6 → 5.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. package/dist/Editor/CommonEditor.js +14 -8
  2. package/dist/Editor/Editor.css +58 -22
  3. package/dist/Editor/Elements/Accordion/Accordion.js +8 -1
  4. package/dist/Editor/Elements/AppHeader/AppHeader.js +6 -6
  5. package/dist/Editor/Elements/Button/EditorButton.js +9 -2
  6. package/dist/Editor/Elements/Color Picker/ColorButtons.js +4 -2
  7. package/dist/Editor/Elements/DataView/DataView.js +124 -0
  8. package/dist/Editor/Elements/DataView/DataViewButton.js +23 -0
  9. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +67 -0
  10. package/dist/Editor/Elements/DataView/Layouts/DataTypes/CheckType.js +33 -0
  11. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +162 -0
  12. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/SimpleSelect.js +40 -0
  13. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/styles.js +67 -0
  14. package/dist/Editor/Elements/DataView/Layouts/DataTypes/DateType.js +35 -0
  15. package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +39 -0
  16. package/dist/Editor/Elements/DataView/Layouts/DataTypes/NumberType.js +30 -0
  17. package/dist/Editor/Elements/DataView/Layouts/DataTypes/PersonType.js +30 -0
  18. package/dist/Editor/Elements/DataView/Layouts/DataTypes/SelectType.js +35 -0
  19. package/dist/Editor/Elements/DataView/Layouts/DataTypes/TextType.js +36 -0
  20. package/dist/Editor/Elements/DataView/Layouts/DataTypes/index.js +17 -0
  21. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/ChooseField.js +29 -0
  22. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/ChooseSort.js +38 -0
  23. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/index.js +74 -0
  24. package/dist/Editor/Elements/DataView/Layouts/FilterSort/index.js +64 -0
  25. package/dist/Editor/Elements/DataView/Layouts/FilterSort/styles.js +106 -0
  26. package/dist/Editor/Elements/DataView/Layouts/FilterView.js +174 -0
  27. package/dist/Editor/Elements/DataView/Layouts/Formula.js +29 -0
  28. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +113 -0
  29. package/dist/Editor/Elements/DataView/Layouts/Options/AddProperty.js +37 -0
  30. package/dist/Editor/Elements/DataView/Layouts/Options/AllProperties.js +111 -0
  31. package/dist/Editor/Elements/DataView/Layouts/Options/ChangeProperty.js +60 -0
  32. package/dist/Editor/Elements/DataView/Layouts/Options/ColumnsList.js +36 -0
  33. package/dist/Editor/Elements/DataView/Layouts/Options/Constants.js +101 -0
  34. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +160 -0
  35. package/dist/Editor/Elements/DataView/Layouts/Options/EditProperty.js +190 -0
  36. package/dist/Editor/Elements/DataView/Layouts/Options/FilterProperty.js +42 -0
  37. package/dist/Editor/Elements/DataView/Layouts/Options/PropertyList.js +30 -0
  38. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +110 -0
  39. package/dist/Editor/Elements/DataView/Layouts/Options/styles.js +179 -0
  40. package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +112 -0
  41. package/dist/Editor/Elements/DataView/Layouts/TableView.js +227 -0
  42. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +80 -0
  43. package/dist/Editor/Elements/DataView/Layouts/colStyles.js +10 -0
  44. package/dist/Editor/Elements/DataView/Layouts/index.js +25 -0
  45. package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +281 -0
  46. package/dist/Editor/Elements/DataView/Utils/globalSearch.js +15 -0
  47. package/dist/Editor/Elements/DataView/Utils/multiSortRows.js +74 -0
  48. package/dist/Editor/Elements/DataView/styles.js +154 -0
  49. package/dist/Editor/Elements/Divider/Divider.js +24 -9
  50. package/dist/Editor/Elements/Embed/Image.js +31 -12
  51. package/dist/Editor/Elements/Embed/Video.js +13 -2
  52. package/dist/Editor/Elements/Form/Form.js +1 -0
  53. package/dist/Editor/Elements/FreeGrid/breakpointConstants.js +4 -4
  54. package/dist/Editor/Elements/FreeGrid/styles.js +2 -1
  55. package/dist/Editor/Elements/Grid/GridItem.js +2 -0
  56. package/dist/Editor/Elements/Grid/Styles.js +44 -0
  57. package/dist/Editor/Elements/List/CheckList.js +2 -1
  58. package/dist/Editor/Elements/Search/SearchAttachment.js +1 -0
  59. package/dist/Editor/Elements/Signature/SignaturePopup.js +4 -4
  60. package/dist/Editor/Elements/SimpleText/index.js +8 -1
  61. package/dist/Editor/Elements/SimpleText/style.js +10 -1
  62. package/dist/Editor/Elements/Table/Table.js +2 -4
  63. package/dist/Editor/Elements/Table/TableCell.js +5 -10
  64. package/dist/Editor/Elements/TopBanner/TopBanner.js +2 -1
  65. package/dist/Editor/MiniEditor.js +15 -1
  66. package/dist/Editor/Styles/EditorStyles.js +5 -3
  67. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +17 -1
  68. package/dist/Editor/Toolbar/FormatTools/TextSize.js +5 -3
  69. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +210 -72
  70. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +56 -8
  71. package/dist/Editor/Toolbar/Toolbar.js +6 -0
  72. package/dist/Editor/Toolbar/toolbarGroups.js +4 -0
  73. package/dist/Editor/assets/svg/SettingsIcon.js +4 -4
  74. package/dist/Editor/common/ColorPickerButton.js +5 -3
  75. package/dist/Editor/common/DnD/Draggable.js +2 -1
  76. package/dist/Editor/common/FontLoader/FontLoader.js +4 -4
  77. package/dist/Editor/common/Icon.js +6 -0
  78. package/dist/Editor/common/ImageSelector/Options/Upload.js +2 -1
  79. package/dist/Editor/common/ImageSelector/Styles.js +47 -6
  80. package/dist/Editor/common/ImageSelector/UploadStyles.js +18 -6
  81. package/dist/Editor/common/MentionsPopup/Styles.js +109 -122
  82. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +1 -0
  83. package/dist/Editor/common/RnD/GuideLines/styles.js +3 -3
  84. package/dist/Editor/common/RnD/ShadowElement.js +1 -1
  85. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +14 -2
  86. package/dist/Editor/common/RnD/Utils/gridDropItem.js +9 -6
  87. package/dist/Editor/common/RnD/index.js +2 -1
  88. package/dist/Editor/common/Section/index.js +3 -3
  89. package/dist/Editor/common/Section/styles.js +5 -1
  90. package/dist/Editor/common/Shorthands/elements.js +13 -1
  91. package/dist/Editor/common/StyleBuilder/fieldStyle.js +2 -1
  92. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +9 -3
  93. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +27 -3
  94. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -2
  95. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +10 -2
  96. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +2 -1
  97. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +1 -1
  98. package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +2 -0
  99. package/dist/Editor/common/StyleBuilder/fieldTypes/index.js +3 -1
  100. package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +79 -0
  101. package/dist/Editor/common/StyleBuilder/fieldTypes/radiusStyle.js +4 -4
  102. package/dist/Editor/common/StyleBuilder/fieldTypes/saveAsTemplate.js +22 -6
  103. package/dist/Editor/common/StyleBuilder/fieldTypes/selectBox.js +21 -2
  104. package/dist/Editor/common/StyleBuilder/fieldTypes/text.js +15 -4
  105. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +7 -0
  106. package/dist/Editor/common/StyleBuilder/index.js +17 -9
  107. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +4 -0
  108. package/dist/Editor/common/ToolbarIcon.js +1 -1
  109. package/dist/Editor/common/Uploader.js +46 -36
  110. package/dist/Editor/common/iconListV2.js +348 -130
  111. package/dist/Editor/common/iconslist.js +6 -3
  112. package/dist/Editor/commonStyle.js +290 -4
  113. package/dist/Editor/helper/deserialize/index.js +19 -23
  114. package/dist/Editor/helper/enforceDateFormat.js +41 -0
  115. package/dist/Editor/helper/index.js +16 -3
  116. package/dist/Editor/helper/theme.js +24 -1
  117. package/dist/Editor/hooks/useMouseMove.js +5 -2
  118. package/dist/Editor/hooks/useTable.js +22 -19
  119. package/dist/Editor/plugins/withCustomDeleteBackward.js +33 -2
  120. package/dist/Editor/plugins/withEmbeds.js +30 -26
  121. package/dist/Editor/utils/SlateUtilityFunctions.js +27 -4
  122. package/dist/Editor/utils/button.js +4 -4
  123. package/dist/Editor/utils/dataView.js +43 -0
  124. package/dist/Editor/utils/helper.js +50 -10
  125. package/dist/Editor/utils/pageSettings.js +14 -2
  126. package/package.json +2 -2
@@ -454,133 +454,130 @@ export const FormElementIcon = props => /*#__PURE__*/_jsxs("svg", {
454
454
  })]
455
455
  });
456
456
  export const OrderedListTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
457
- width: "19",
458
- height: "19",
457
+ width: "24",
458
+ height: "25",
459
459
  viewBox: "0 0 24 25",
460
460
  fill: "none",
461
461
  xmlns: "http://www.w3.org/2000/svg",
462
462
  className: "orderedListIcon",
463
463
  children: [/*#__PURE__*/_jsx("path", {
464
464
  d: "M11 19.8564H21",
465
- stroke: "currentColor",
466
- strokeWidth: "1.5",
465
+ stroke: "#64748B",
466
+ strokeWidth: "2",
467
467
  strokeLinecap: "round",
468
- strokeLinejoin: "round"
468
+ strokeLinejoin: "round",
469
+ className: "strokePathList"
469
470
  }), /*#__PURE__*/_jsx("path", {
470
471
  d: "M11 12.8564H21",
471
- stroke: "currentColor",
472
- strokeWidth: "1.5",
472
+ stroke: "#64748B",
473
+ strokeWidth: "2",
473
474
  strokeLinecap: "round",
474
- strokeLinejoin: "round"
475
+ strokeLinejoin: "round",
476
+ className: "strokePathList"
475
477
  }), /*#__PURE__*/_jsx("path", {
476
478
  d: "M11 5.85645H21",
477
- stroke: "currentColor",
478
- strokeWidth: "1.5",
479
+ stroke: "#64748B",
480
+ strokeWidth: "2",
479
481
  strokeLinecap: "round",
480
- strokeLinejoin: "round"
481
- }), /*#__PURE__*/_jsx("text", {
482
- x: "3",
483
- y: "8",
484
- fontSize: "5",
485
- fill: "currentColor",
486
- children: "1"
487
- }), /*#__PURE__*/_jsx("text", {
488
- x: "3",
489
- y: "14",
490
- fontSize: "5",
491
- fill: "currentColor",
492
- children: "2"
493
- }), /*#__PURE__*/_jsx("text", {
494
- x: "3",
495
- y: "21",
496
- fontSize: "5",
497
- fill: "currentColor",
498
- children: "3"
482
+ strokeLinejoin: "round",
483
+ className: "strokePathList"
484
+ }), /*#__PURE__*/_jsx("path", {
485
+ d: "M5.63139 3.12917V7.85645H4.34801V4.31099H4.32031L3.28622 4.9296V3.84011L4.44957 3.12917H5.63139Z",
486
+ fill: "#64748B",
487
+ className: "fillPathList"
488
+ }), /*#__PURE__*/_jsx("path", {
489
+ d: "M3.31392 14.8564V13.9331L5.07741 12.4743C5.19437 12.3774 5.29439 12.2866 5.37749 12.202C5.46212 12.1158 5.52675 12.0273 5.57138 11.9365C5.61754 11.8457 5.64062 11.7449 5.64062 11.6341C5.64062 11.5126 5.61447 11.4087 5.56215 11.3225C5.51136 11.2364 5.44058 11.1702 5.34979 11.124C5.259 11.0763 5.15436 11.0525 5.03587 11.0525C4.91738 11.0525 4.81274 11.0763 4.72195 11.124C4.63269 11.1717 4.56345 11.2417 4.5142 11.3341C4.46496 11.4264 4.44034 11.5387 4.44034 11.6711H3.22159C3.22159 11.3387 3.29622 11.0525 3.44549 10.8124C3.59476 10.5724 3.80558 10.3877 4.07795 10.2584C4.35032 10.1292 4.66963 10.0645 5.03587 10.0645C5.41442 10.0645 5.74219 10.1253 6.01918 10.2469C6.2977 10.3669 6.51237 10.5362 6.66317 10.7547C6.81552 10.9732 6.89169 11.2294 6.89169 11.5233C6.89169 11.7049 6.85399 11.8857 6.77859 12.0658C6.70318 12.2443 6.56777 12.442 6.37234 12.659C6.17691 12.876 5.89915 13.1345 5.53906 13.4346L5.09588 13.8039V13.8316H6.94247V14.8564H3.31392Z",
490
+ fill: "#64748B",
491
+ className: "fillPathList"
492
+ }), /*#__PURE__*/_jsx("path", {
493
+ d: "M5.16051 21.9211C4.78812 21.9211 4.45727 21.8572 4.16797 21.7295C3.88021 21.6002 3.654 21.4225 3.48935 21.1963C3.32469 20.9701 3.2416 20.71 3.24006 20.4161H4.53267C4.53421 20.5069 4.56191 20.5885 4.61577 20.6608C4.67116 20.7316 4.74657 20.787 4.84197 20.827C4.93738 20.867 5.04664 20.887 5.16974 20.887C5.28823 20.887 5.39287 20.8662 5.48366 20.8247C5.57446 20.7816 5.64524 20.7223 5.69602 20.6469C5.7468 20.5715 5.77143 20.4854 5.76989 20.3884C5.77143 20.293 5.74219 20.2084 5.68217 20.1345C5.6237 20.0606 5.54137 20.0029 5.43519 19.9614C5.32901 19.9198 5.20668 19.8991 5.06818 19.8991H4.58807V19.0127H5.06818C5.1959 19.0127 5.30824 18.9919 5.40518 18.9504C5.50367 18.9088 5.57984 18.8511 5.6337 18.7773C5.6891 18.7034 5.71603 18.6188 5.71449 18.5233C5.71603 18.431 5.69371 18.3495 5.64755 18.2787C5.60138 18.2079 5.53675 18.1525 5.45366 18.1125C5.3721 18.0725 5.27746 18.0525 5.16974 18.0525C5.05279 18.0525 4.94815 18.0732 4.85582 18.1148C4.76503 18.1563 4.69348 18.214 4.64116 18.2879C4.58884 18.3618 4.56191 18.4464 4.56037 18.5418H3.33239C3.33393 18.2525 3.41317 17.9971 3.57013 17.7755C3.72863 17.5539 3.94561 17.38 4.22106 17.2538C4.49651 17.1276 4.81274 17.0645 5.16974 17.0645C5.51906 17.0645 5.82759 17.1238 6.09535 17.2423C6.36464 17.3608 6.57469 17.5239 6.7255 17.7316C6.87784 17.9378 6.95324 18.174 6.9517 18.4403C6.95478 18.7049 6.86399 18.9219 6.67933 19.0912C6.49621 19.2604 6.26385 19.3605 5.98224 19.3912V19.4282C6.36387 19.4697 6.65086 19.5867 6.84322 19.779C7.03557 19.9698 7.13021 20.2099 7.12713 20.4992C7.12867 20.7762 7.04557 21.0216 6.87784 21.2355C6.71165 21.4494 6.48005 21.6172 6.18306 21.7387C5.88761 21.8603 5.54676 21.9211 5.16051 21.9211Z",
494
+ fill: "#64748B",
495
+ className: "fillPathList"
499
496
  })]
500
497
  });
501
498
  export const BulletedListTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
502
499
  width: "19",
503
500
  height: "19",
504
- viewBox: "0 0 24 25",
501
+ viewBox: "0 0 22 22",
505
502
  fill: "none",
506
503
  xmlns: "http://www.w3.org/2000/svg",
507
504
  className: "bulletedListTextIcon",
508
505
  children: [/*#__PURE__*/_jsx("path", {
509
506
  d: "M11 19.8564H21",
510
507
  stroke: "currentColor",
511
- strokeWidth: "1.5",
508
+ strokeWidth: "2",
512
509
  strokeLinecap: "round",
513
510
  strokeLinejoin: "round"
514
511
  }), /*#__PURE__*/_jsx("path", {
515
512
  d: "M11 12.8564H21",
516
513
  stroke: "currentColor",
517
- strokeWidth: "1.5",
514
+ strokeWidth: "2",
518
515
  strokeLinecap: "round",
519
516
  strokeLinejoin: "round"
520
517
  }), /*#__PURE__*/_jsx("path", {
521
518
  d: "M11 5.85645H21",
522
519
  stroke: "currentColor",
523
- strokeWidth: "1.5",
520
+ strokeWidth: "2",
524
521
  strokeLinecap: "round",
525
522
  strokeLinejoin: "round"
526
523
  }), /*#__PURE__*/_jsx("circle", {
527
524
  cx: "5.25",
528
525
  cy: "5.80664",
529
- r: "1.25",
526
+ r: "1.7",
530
527
  fill: "currentColor"
531
528
  }), /*#__PURE__*/_jsx("circle", {
532
529
  cx: "5.25",
533
530
  cy: "12.8066",
534
- r: "1.25",
531
+ r: "1.7",
535
532
  fill: "currentColor"
536
533
  }), /*#__PURE__*/_jsx("circle", {
537
534
  cx: "5.25",
538
535
  cy: "19.8066",
539
- r: "1.25",
536
+ r: "1.7",
540
537
  fill: "currentColor"
541
538
  })]
542
539
  });
543
540
  export const CheckListTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
544
541
  width: "19",
545
542
  height: "19",
546
- viewBox: "0 0 24 25",
543
+ viewBox: "0 0 22 22",
547
544
  fill: "none",
548
545
  xmlns: "http://www.w3.org/2000/svg",
549
546
  className: "checkedListTextIcon",
550
547
  children: [/*#__PURE__*/_jsx("path", {
551
548
  d: "M11 19.8564H21",
552
549
  stroke: "currentColor",
553
- strokeWidth: "1.5",
550
+ strokeWidth: "2",
554
551
  strokeLinecap: "round",
555
552
  strokeLinejoin: "round"
556
553
  }), /*#__PURE__*/_jsx("path", {
557
554
  d: "M11 12.8564H21",
558
555
  stroke: "currentColor",
559
- strokeWidth: "1.5",
556
+ strokeWidth: "2",
560
557
  strokeLinecap: "round",
561
558
  strokeLinejoin: "round"
562
559
  }), /*#__PURE__*/_jsx("path", {
563
560
  d: "M11 5.85645H21",
564
561
  stroke: "currentColor",
565
- strokeWidth: "1.5",
562
+ strokeWidth: "2",
566
563
  strokeLinecap: "round",
567
564
  strokeLinejoin: "round"
568
565
  }), /*#__PURE__*/_jsx("path", {
569
566
  d: "M3 5.85645L4 6.85645L7 3.85645",
570
567
  stroke: "currentColor",
571
- strokeWidth: "1.5",
568
+ strokeWidth: "2",
572
569
  strokeLinecap: "round",
573
570
  strokeLinejoin: "round"
574
571
  }), /*#__PURE__*/_jsx("path", {
575
572
  d: "M3 12.8564L4 13.8564L7 10.8564",
576
573
  stroke: "currentColor",
577
- strokeWidth: "1.5",
574
+ strokeWidth: "2",
578
575
  strokeLinecap: "round",
579
576
  strokeLinejoin: "round"
580
577
  }), /*#__PURE__*/_jsx("path", {
581
578
  d: "M3 19.8564L4 20.8564L7 17.8564",
582
579
  stroke: "currentColor",
583
- strokeWidth: "1.5",
580
+ strokeWidth: "2",
584
581
  strokeLinecap: "round",
585
582
  strokeLinejoin: "round"
586
583
  })]
@@ -588,38 +585,38 @@ export const CheckListTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
588
585
  export const AccordionTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
589
586
  width: "19",
590
587
  height: "19",
591
- viewBox: "0 0 24 25",
588
+ viewBox: "0 0 22 22",
592
589
  fill: "none",
593
590
  xmlns: "http://www.w3.org/2000/svg",
594
591
  className: "accordianIconSvgTextFormat",
595
592
  children: [/*#__PURE__*/_jsx("path", {
596
593
  d: "M14 4.85547H21",
597
- stroke: "#8F9CAE",
598
- strokeWidth: "1.5",
594
+ stroke: "#64748B",
595
+ strokeWidth: "1.7",
599
596
  strokeLinecap: "round",
600
597
  strokeLinejoin: "round"
601
598
  }), /*#__PURE__*/_jsx("path", {
602
599
  d: "M14 9.85547H21",
603
- stroke: "#8F9CAE",
604
- strokeWidth: "1.5",
600
+ stroke: "#64748B",
601
+ strokeWidth: "1.7",
605
602
  strokeLinecap: "round",
606
603
  strokeLinejoin: "round"
607
604
  }), /*#__PURE__*/_jsx("path", {
608
605
  d: "M3 14.8555H21",
609
- stroke: "#8F9CAE",
610
- strokeWidth: "1.5",
606
+ stroke: "#64748B",
607
+ strokeWidth: "1.7",
611
608
  strokeLinecap: "round",
612
609
  strokeLinejoin: "round"
613
610
  }), /*#__PURE__*/_jsx("path", {
614
611
  d: "M3 19.8555H21",
615
- stroke: "#8F9CAE",
616
- strokeWidth: "1.5",
612
+ stroke: "#64748B",
613
+ strokeWidth: "1.7",
617
614
  strokeLinecap: "round",
618
615
  strokeLinejoin: "round"
619
616
  }), /*#__PURE__*/_jsx("path", {
620
617
  d: "M8.8 6.66265C9.33333 6.97057 9.33333 7.74037 8.8 8.04829L3.7 10.9928C3.16667 11.3007 2.5 10.9158 2.5 10.3L2.5 4.41098C2.5 3.79514 3.16667 3.41024 3.7 3.71816L8.8 6.66265Z",
621
- stroke: "#8F9CAE",
622
- strokeWidth: "1.5"
618
+ stroke: "#64748B",
619
+ strokeWidth: "1.7"
623
620
  })]
624
621
  });
625
622
  export const BoldTextFormatIcon = props => /*#__PURE__*/_jsx("svg", {
@@ -685,6 +682,7 @@ export const LinkIconV2 = props => /*#__PURE__*/_jsxs("svg", {
685
682
  viewBox: "1.5 0 17 20",
686
683
  fill: "none",
687
684
  xmlns: "http://www.w3.org/2000/svg",
685
+ className: "linkIcon",
688
686
  children: [/*#__PURE__*/_jsx("path", {
689
687
  d: "M11.2869 8.71403C10.6043 8.03173 9.67871 7.64844 8.71358 7.64844C7.74846 7.64844 6.82284 8.03173 6.14025 8.71403L3.56608 11.2874C2.88348 11.97 2.5 12.8958 2.5 13.8611C2.5 14.8265 2.88348 15.7523 3.56608 16.4349C4.24868 17.1175 5.17449 17.5009 6.13983 17.5009C7.10518 17.5009 8.03098 17.1175 8.71358 16.4349L10.0002 15.1482",
690
688
  stroke: "#64748B",
@@ -929,67 +927,17 @@ export function CalendlyIcon() {
929
927
  }), /*#__PURE__*/_jsx("path", {
930
928
  d: "M3 1L3 4",
931
929
  stroke: "#64748B",
932
- strokeLinecap: "round"
930
+ strokeLinecap: "round",
931
+ className: "strokePath"
933
932
  }), /*#__PURE__*/_jsx("path", {
934
933
  d: "M9 1L9 4",
935
934
  stroke: "#64748B",
936
- strokeLinecap: "round"
935
+ strokeLinecap: "round",
936
+ className: "strokePath"
937
937
  }), /*#__PURE__*/_jsx("path", {
938
938
  d: "M8.10369 7.0554H7.43892C7.41335 6.91335 7.36577 6.78835 7.29616 6.6804C7.22656 6.57244 7.14134 6.48082 7.04048 6.40554C6.93963 6.33026 6.8267 6.27344 6.7017 6.23509C6.57813 6.19673 6.44673 6.17756 6.30753 6.17756C6.05611 6.17756 5.83097 6.24077 5.6321 6.36719C5.43466 6.49361 5.27841 6.67898 5.16335 6.9233C5.04972 7.16761 4.9929 7.46591 4.9929 7.81818C4.9929 8.1733 5.04972 8.47301 5.16335 8.71733C5.27841 8.96165 5.43537 9.14631 5.63423 9.27131C5.8331 9.39631 6.05682 9.45881 6.3054 9.45881C6.44318 9.45881 6.57386 9.44034 6.69744 9.40341C6.82244 9.36506 6.93537 9.30895 7.03622 9.23509C7.13707 9.16122 7.2223 9.07102 7.2919 8.96449C7.36293 8.85653 7.41193 8.73295 7.43892 8.59375L8.10369 8.59588C8.06818 8.81037 7.99929 9.00781 7.89702 9.18821C7.79616 9.36719 7.66619 9.52202 7.5071 9.6527C7.34943 9.78196 7.16903 9.8821 6.96591 9.95312C6.76278 10.0241 6.54119 10.0597 6.30114 10.0597C5.9233 10.0597 5.58665 9.97017 5.29119 9.79119C4.99574 9.6108 4.76278 9.35298 4.59233 9.01776C4.4233 8.68253 4.33878 8.28267 4.33878 7.81818C4.33878 7.35227 4.42401 6.95241 4.59446 6.61861C4.76491 6.28338 4.99787 6.02628 5.29332 5.8473C5.58878 5.6669 5.92472 5.5767 6.30114 5.5767C6.53267 5.5767 6.74858 5.61009 6.94886 5.67685C7.15057 5.74219 7.33168 5.83878 7.49219 5.96662C7.6527 6.09304 7.78551 6.24787 7.89062 6.43111C7.99574 6.61293 8.06676 6.82102 8.10369 7.0554Z",
939
- fill: "#64748B"
940
- })]
941
- });
942
- }
943
- export function DragIcon() {
944
- return /*#__PURE__*/_jsxs("svg", {
945
- width: "16",
946
- height: "12",
947
- viewBox: "0 0 10 6",
948
- fill: "none",
949
- xmlns: "http://www.w3.org/2000/svg",
950
- className: "dragIcon",
951
- children: [/*#__PURE__*/_jsx("ellipse", {
952
- cx: "1.49462",
953
- cy: "4.42384",
954
- rx: "0.779289",
955
- ry: "0.779289",
956
- transform: "rotate(-90 1.49462 4.42384)",
957
- fill: "#94A3B8"
958
- }), /*#__PURE__*/_jsx("ellipse", {
959
- cx: "4.99999",
960
- cy: "4.42384",
961
- rx: "0.779289",
962
- ry: "0.779289",
963
- transform: "rotate(-90 4.99999 4.42384)",
964
- fill: "#94A3B8"
965
- }), /*#__PURE__*/_jsx("ellipse", {
966
- cx: "8.50732",
967
- cy: "4.42384",
968
- rx: "0.779289",
969
- ry: "0.779289",
970
- transform: "rotate(-90 8.50732 4.42384)",
971
- fill: "#94A3B8"
972
- }), /*#__PURE__*/_jsx("ellipse", {
973
- cx: "1.49462",
974
- cy: "0.91993",
975
- rx: "0.779289",
976
- ry: "0.779289",
977
- transform: "rotate(-90 1.49462 0.91993)",
978
- fill: "#94A3B8"
979
- }), /*#__PURE__*/_jsx("ellipse", {
980
- cx: "4.99999",
981
- cy: "0.91993",
982
- rx: "0.779289",
983
- ry: "0.779289",
984
- transform: "rotate(-90 4.99999 0.91993)",
985
- fill: "#94A3B8"
986
- }), /*#__PURE__*/_jsx("ellipse", {
987
- cx: "8.50732",
988
- cy: "0.91993",
989
- rx: "0.779289",
990
- ry: "0.779289",
991
- transform: "rotate(-90 8.50732 0.91993)",
992
- fill: "#94A3B8"
939
+ fill: "#64748B",
940
+ className: "fillPath"
993
941
  })]
994
942
  });
995
943
  }
@@ -997,22 +945,38 @@ export function LeftAlignTextFormat() {
997
945
  return /*#__PURE__*/_jsxs("svg", {
998
946
  width: "19",
999
947
  height: "19",
1000
- viewBox: "0 0 20 25",
948
+ viewBox: "0 0 20 22",
1001
949
  fill: "none",
1002
950
  xmlns: "http://www.w3.org/2000/svg",
1003
951
  className: "textAlignIconSameStyles",
1004
952
  children: [/*#__PURE__*/_jsx("path", {
1005
953
  d: "M17.5 5.60547H2.5C2.15833 5.60547 1.875 5.26547 1.875 4.85547C1.875 4.44547 2.15833 4.10547 2.5 4.10547H17.5C17.8417 4.10547 18.125 4.44547 18.125 4.85547C18.125 5.26547 17.8417 5.60547 17.5 5.60547Z",
1006
- fill: "currentColor"
954
+ fill: "currentColor",
955
+ stroke: "currentColor",
956
+ strokeWidth: "0.5",
957
+ strokeLinecap: "round",
958
+ strokeLinejoin: "round"
1007
959
  }), /*#__PURE__*/_jsx("path", {
1008
960
  d: "M10.3917 10.6055H2.5C2.15833 10.6055 1.875 10.2655 1.875 9.85547C1.875 9.44547 2.15833 9.10547 2.5 9.10547H10.3917C10.7333 9.10547 11.0167 9.44547 11.0167 9.85547C11.0167 10.2655 10.7417 10.6055 10.3917 10.6055Z",
1009
- fill: "currentColor"
961
+ fill: "currentColor",
962
+ stroke: "currentColor",
963
+ strokeWidth: "0.5",
964
+ strokeLinecap: "round",
965
+ strokeLinejoin: "round"
1010
966
  }), /*#__PURE__*/_jsx("path", {
1011
967
  d: "M17.5 15.6055H2.5C2.15833 15.6055 1.875 15.2655 1.875 14.8555C1.875 14.4455 2.15833 14.1055 2.5 14.1055H17.5C17.8417 14.1055 18.125 14.4455 18.125 14.8555C18.125 15.2655 17.8417 15.6055 17.5 15.6055Z",
1012
- fill: "currentColor"
968
+ fill: "currentColor",
969
+ stroke: "currentColor",
970
+ strokeWidth: "0.5",
971
+ strokeLinecap: "round",
972
+ strokeLinejoin: "round"
1013
973
  }), /*#__PURE__*/_jsx("path", {
1014
974
  d: "M10.3917 20.6055H2.5C2.15833 20.6055 1.875 20.2655 1.875 19.8555C1.875 19.4455 2.15833 19.1055 2.5 19.1055H10.3917C10.7333 19.1055 11.0167 19.4455 11.0167 19.8555C11.0167 20.2655 10.7417 20.6055 10.3917 20.6055Z",
1015
- fill: "currentColor"
975
+ fill: "currentColor",
976
+ stroke: "currentColor",
977
+ strokeWidth: "0.5",
978
+ strokeLinecap: "round",
979
+ strokeLinejoin: "round"
1016
980
  })]
1017
981
  });
1018
982
  }
@@ -1020,22 +984,38 @@ export function CenterAlignTextFormat() {
1020
984
  return /*#__PURE__*/_jsxs("svg", {
1021
985
  width: "19",
1022
986
  height: "19",
1023
- viewBox: "0 0 20 25",
987
+ viewBox: "0 0 20 22",
1024
988
  fill: "none",
1025
989
  xmlns: "http://www.w3.org/2000/svg",
1026
990
  className: "textAlignIconSameStyles",
1027
991
  children: [/*#__PURE__*/_jsx("path", {
1028
992
  d: "M17.5 5.60547H2.5C2.15833 5.60547 1.875 5.26547 1.875 4.85547C1.875 4.44547 2.15833 4.10547 2.5 4.10547H17.5C17.8417 4.10547 18.125 4.44547 18.125 4.85547C18.125 5.26547 17.8417 5.60547 17.5 5.60547Z",
1029
- fill: "currentColor"
993
+ fill: "currentColor",
994
+ stroke: "currentColor",
995
+ strokeWidth: "0.5",
996
+ strokeLinecap: "round",
997
+ strokeLinejoin: "round"
1030
998
  }), /*#__PURE__*/_jsx("path", {
1031
999
  d: "M13.9508 10.6055H6.05078C5.70911 10.6055 5.42578 10.2655 5.42578 9.85547C5.42578 9.44547 5.70911 9.10547 6.05078 9.10547H13.9424C14.2841 9.10547 14.5674 9.44547 14.5674 9.85547C14.5674 10.2655 14.2924 10.6055 13.9508 10.6055Z",
1032
- fill: "currentColor"
1000
+ fill: "currentColor",
1001
+ stroke: "currentColor",
1002
+ strokeWidth: "0.5",
1003
+ strokeLinecap: "round",
1004
+ strokeLinejoin: "round"
1033
1005
  }), /*#__PURE__*/_jsx("path", {
1034
1006
  d: "M17.5 15.6055H2.5C2.15833 15.6055 1.875 15.2655 1.875 14.8555C1.875 14.4455 2.15833 14.1055 2.5 14.1055H17.5C17.8417 14.1055 18.125 14.4455 18.125 14.8555C18.125 15.2655 17.8417 15.6055 17.5 15.6055Z",
1035
- fill: "currentColor"
1007
+ fill: "currentColor",
1008
+ stroke: "currentColor",
1009
+ strokeWidth: "0.5",
1010
+ strokeLinecap: "round",
1011
+ strokeLinejoin: "round"
1036
1012
  }), /*#__PURE__*/_jsx("path", {
1037
1013
  d: "M13.9508 20.6055H6.05078C5.70911 20.6055 5.42578 20.2655 5.42578 19.8555C5.42578 19.4455 5.70911 19.1055 6.05078 19.1055H13.9424C14.2841 19.1055 14.5674 19.4455 14.5674 19.8555C14.5674 20.2655 14.2924 20.6055 13.9508 20.6055Z",
1038
- fill: "currentColor"
1014
+ fill: "currentColor",
1015
+ stroke: "currentColor",
1016
+ strokeWidth: "0.5",
1017
+ strokeLinecap: "round",
1018
+ strokeLinejoin: "round"
1039
1019
  })]
1040
1020
  });
1041
1021
  }
@@ -1043,22 +1023,38 @@ export function RightAlignTextFormat() {
1043
1023
  return /*#__PURE__*/_jsxs("svg", {
1044
1024
  width: "19",
1045
1025
  height: "19",
1046
- viewBox: "0 0 20 25",
1026
+ viewBox: "0 0 20 22",
1047
1027
  fill: "currentColor",
1048
1028
  xmlns: "http://www.w3.org/2000/svg",
1049
1029
  className: "textAlignIconSameStyles",
1050
1030
  children: [/*#__PURE__*/_jsx("path", {
1051
1031
  d: "M17.5 5.60547H2.5C2.15833 5.60547 1.875 5.26547 1.875 4.85547C1.875 4.44547 2.15833 4.10547 2.5 4.10547H17.5C17.8417 4.10547 18.125 4.44547 18.125 4.85547C18.125 5.26547 17.8417 5.60547 17.5 5.60547Z",
1052
- fill: "currentColor"
1032
+ fill: "currentColor",
1033
+ stroke: "currentColor",
1034
+ strokeWidth: "0.5",
1035
+ strokeLinecap: "round",
1036
+ strokeLinejoin: "round"
1053
1037
  }), /*#__PURE__*/_jsx("path", {
1054
1038
  d: "M17.4991 10.6055H9.60742C9.26576 10.6055 8.98242 10.2655 8.98242 9.85547C8.98242 9.44547 9.26576 9.10547 9.60742 9.10547H17.4991C17.8408 9.10547 18.1241 9.44547 18.1241 9.85547C18.1241 10.2655 17.8408 10.6055 17.4991 10.6055Z",
1055
- fill: "currentColor"
1039
+ fill: "currentColor",
1040
+ stroke: "currentColor",
1041
+ strokeWidth: "0.5",
1042
+ strokeLinecap: "round",
1043
+ strokeLinejoin: "round"
1056
1044
  }), /*#__PURE__*/_jsx("path", {
1057
1045
  d: "M17.5 15.6055H2.5C2.15833 15.6055 1.875 15.2655 1.875 14.8555C1.875 14.4455 2.15833 14.1055 2.5 14.1055H17.5C17.8417 14.1055 18.125 14.4455 18.125 14.8555C18.125 15.2655 17.8417 15.6055 17.5 15.6055Z",
1058
- fill: "currentColor"
1046
+ fill: "currentColor",
1047
+ stroke: "currentColor",
1048
+ strokeWidth: "0.5",
1049
+ strokeLinecap: "round",
1050
+ strokeLinejoin: "round"
1059
1051
  }), /*#__PURE__*/_jsx("path", {
1060
1052
  d: "M17.4991 20.6055H9.60742C9.26576 20.6055 8.98242 20.2655 8.98242 19.8555C8.98242 19.4455 9.26576 19.1055 9.60742 19.1055H17.4991C17.8408 19.1055 18.1241 19.4455 18.1241 19.8555C18.1241 20.2655 17.8408 20.6055 17.4991 20.6055Z",
1061
- fill: "currentColor"
1053
+ fill: "currentColor",
1054
+ stroke: "currentColor",
1055
+ strokeWidth: "0.5",
1056
+ strokeLinecap: "round",
1057
+ strokeLinejoin: "round"
1062
1058
  })]
1063
1059
  });
1064
1060
  }
@@ -1066,7 +1062,7 @@ export function JustifyTextFormat() {
1066
1062
  return /*#__PURE__*/_jsxs("svg", {
1067
1063
  width: "19",
1068
1064
  height: "19",
1069
- viewBox: "0 0 20 25"
1065
+ viewBox: "0 0 20 22"
1070
1066
  // fill="none"
1071
1067
  ,
1072
1068
  xmlns: "http://www.w3.org/2000/svg",
@@ -1074,25 +1070,25 @@ export function JustifyTextFormat() {
1074
1070
  children: [/*#__PURE__*/_jsx("path", {
1075
1071
  d: "M2.5 4.85547H17.5",
1076
1072
  stroke: "currentColor",
1077
- strokeWidth: "1.5",
1073
+ strokeWidth: "2",
1078
1074
  strokeLinecap: "round",
1079
1075
  strokeLinejoin: "round"
1080
1076
  }), /*#__PURE__*/_jsx("path", {
1081
1077
  d: "M2.5 9.85547H17.5",
1082
1078
  stroke: "currentColor",
1083
- strokeWidth: "1.5",
1079
+ strokeWidth: "2",
1084
1080
  strokeLinecap: "round",
1085
1081
  strokeLinejoin: "round"
1086
1082
  }), /*#__PURE__*/_jsx("path", {
1087
1083
  d: "M2.5 14.8555H17.5",
1088
1084
  stroke: "currentColor",
1089
- strokeWidth: "1.5",
1085
+ strokeWidth: "2",
1090
1086
  strokeLinecap: "round",
1091
1087
  strokeLinejoin: "round"
1092
1088
  }), /*#__PURE__*/_jsx("path", {
1093
1089
  d: "M2.5 19.8555H17.5",
1094
1090
  stroke: "currentColor",
1095
- strokeWidth: "1.5",
1091
+ strokeWidth: "2",
1096
1092
  strokeLinecap: "round",
1097
1093
  strokeLinejoin: "round"
1098
1094
  })]
@@ -1245,4 +1241,226 @@ export function CodeElementIcon() {
1245
1241
  strokeLinejoin: "round"
1246
1242
  })]
1247
1243
  });
1244
+ }
1245
+ export function DragIcon() {
1246
+ return /*#__PURE__*/_jsxs("svg", {
1247
+ width: "16",
1248
+ height: "12",
1249
+ viewBox: "0 0 10 6",
1250
+ fill: "none",
1251
+ xmlns: "http://www.w3.org/2000/svg",
1252
+ className: "dragIcon",
1253
+ children: [/*#__PURE__*/_jsx("ellipse", {
1254
+ cx: "1.49462",
1255
+ cy: "4.42384",
1256
+ rx: "0.779289",
1257
+ ry: "0.779289",
1258
+ transform: "rotate(-90 1.49462 4.42384)",
1259
+ fill: "#94A3B8"
1260
+ }), /*#__PURE__*/_jsx("ellipse", {
1261
+ cx: "4.99999",
1262
+ cy: "4.42384",
1263
+ rx: "0.779289",
1264
+ ry: "0.779289",
1265
+ transform: "rotate(-90 4.99999 4.42384)",
1266
+ fill: "#94A3B8"
1267
+ }), /*#__PURE__*/_jsx("ellipse", {
1268
+ cx: "8.50732",
1269
+ cy: "4.42384",
1270
+ rx: "0.779289",
1271
+ ry: "0.779289",
1272
+ transform: "rotate(-90 8.50732 4.42384)",
1273
+ fill: "#94A3B8"
1274
+ }), /*#__PURE__*/_jsx("ellipse", {
1275
+ cx: "1.49462",
1276
+ cy: "0.91993",
1277
+ rx: "0.779289",
1278
+ ry: "0.779289",
1279
+ transform: "rotate(-90 1.49462 0.91993)",
1280
+ fill: "#94A3B8"
1281
+ }), /*#__PURE__*/_jsx("ellipse", {
1282
+ cx: "4.99999",
1283
+ cy: "0.91993",
1284
+ rx: "0.779289",
1285
+ ry: "0.779289",
1286
+ transform: "rotate(-90 4.99999 0.91993)",
1287
+ fill: "#94A3B8"
1288
+ }), /*#__PURE__*/_jsx("ellipse", {
1289
+ cx: "8.50732",
1290
+ cy: "0.91993",
1291
+ rx: "0.779289",
1292
+ ry: "0.779289",
1293
+ transform: "rotate(-90 8.50732 0.91993)",
1294
+ fill: "#94A3B8"
1295
+ })]
1296
+ });
1297
+ }
1298
+ export function TextSizeUpArrow() {
1299
+ return /*#__PURE__*/_jsx("svg", {
1300
+ width: "9",
1301
+ height: "5",
1302
+ viewBox: "0 0 9 5",
1303
+ fill: "none",
1304
+ xmlns: "http://www.w3.org/2000/svg",
1305
+ children: /*#__PURE__*/_jsx("path", {
1306
+ d: "M8 3.85645L5.11869 1.10055C4.77841 0.775079 4.22159 0.775079 3.88131 1.10055L1 3.85645",
1307
+ stroke: "#64748B",
1308
+ strokeWidth: "1.5",
1309
+ strokeMiterlimit: "10",
1310
+ strokeLinecap: "round",
1311
+ strokeLinejoin: "round"
1312
+ })
1313
+ });
1314
+ }
1315
+ export function TextSizeDownArrow() {
1316
+ return /*#__PURE__*/_jsx("svg", {
1317
+ width: "9",
1318
+ height: "5",
1319
+ viewBox: "0 0 9 5",
1320
+ fill: "none",
1321
+ xmlns: "http://www.w3.org/2000/svg",
1322
+ children: /*#__PURE__*/_jsx("path", {
1323
+ d: "M1 0.856445L3.88131 3.61235C4.22159 3.93781 4.77841 3.93781 5.11869 3.61235L8 0.856445",
1324
+ stroke: "#64748B",
1325
+ strokeWidth: "1.5",
1326
+ strokeMiterlimit: "10",
1327
+ strokeLinecap: "round",
1328
+ strokeLinejoin: "round"
1329
+ })
1330
+ });
1331
+ }
1332
+ export function CheckedBoxCheckIcon() {
1333
+ return /*#__PURE__*/_jsx("svg", {
1334
+ width: "10",
1335
+ height: "8",
1336
+ viewBox: "0 0 10 8",
1337
+ fill: "none",
1338
+ xmlns: "http://www.w3.org/2000/svg",
1339
+ children: /*#__PURE__*/_jsx("path", {
1340
+ d: "M1.70605 4.06139L4.121 6.47532L8.94886 1.64746",
1341
+ stroke: "white",
1342
+ strokeWidth: "1.5",
1343
+ strokeLinecap: "round",
1344
+ strokeLinejoin: "round"
1345
+ })
1346
+ });
1347
+ }
1348
+ export function SectionSettingIcon() {
1349
+ return /*#__PURE__*/_jsxs("svg", {
1350
+ width: "13",
1351
+ height: "12",
1352
+ viewBox: "0 0 13 12",
1353
+ fill: "none",
1354
+ xmlns: "http://www.w3.org/2000/svg",
1355
+ children: [/*#__PURE__*/_jsx("path", {
1356
+ d: "M11.9102 2.5L6.41016 2.5",
1357
+ stroke: "#94A3B8",
1358
+ strokeWidth: "0.8",
1359
+ strokeMiterlimit: "10",
1360
+ strokeLinecap: "round",
1361
+ strokeLinejoin: "round"
1362
+ }), /*#__PURE__*/_jsx("path", {
1363
+ d: "M4.41016 2.5L1.91016 2.5",
1364
+ stroke: "#94A3B8",
1365
+ strokeWidth: "0.8",
1366
+ strokeMiterlimit: "10",
1367
+ strokeLinecap: "round",
1368
+ strokeLinejoin: "round"
1369
+ }), /*#__PURE__*/_jsx("path", {
1370
+ d: "M11.9102 6L9.41016 6",
1371
+ stroke: "#94A3B8",
1372
+ strokeWidth: "0.8",
1373
+ strokeMiterlimit: "10",
1374
+ strokeLinecap: "round",
1375
+ strokeLinejoin: "round"
1376
+ }), /*#__PURE__*/_jsx("path", {
1377
+ d: "M7.41016 6L1.91016 6",
1378
+ stroke: "#94A3B8",
1379
+ strokeWidth: "0.8",
1380
+ strokeMiterlimit: "10",
1381
+ strokeLinecap: "round",
1382
+ strokeLinejoin: "round"
1383
+ }), /*#__PURE__*/_jsx("path", {
1384
+ d: "M11.9102 9.5L6.41016 9.5",
1385
+ stroke: "#94A3B8",
1386
+ strokeWidth: "0.8",
1387
+ strokeMiterlimit: "10",
1388
+ strokeLinecap: "round",
1389
+ strokeLinejoin: "round"
1390
+ }), /*#__PURE__*/_jsx("path", {
1391
+ d: "M4.41016 9.5H1.91016",
1392
+ stroke: "#94A3B8",
1393
+ strokeWidth: "0.8",
1394
+ strokeMiterlimit: "10",
1395
+ strokeLinecap: "round",
1396
+ strokeLinejoin: "round"
1397
+ }), /*#__PURE__*/_jsx("path", {
1398
+ d: "M6.41016 10.5L6.41016 8.5",
1399
+ stroke: "#94A3B8",
1400
+ strokeWidth: "0.8",
1401
+ strokeMiterlimit: "10",
1402
+ strokeLinecap: "round",
1403
+ strokeLinejoin: "round"
1404
+ }), /*#__PURE__*/_jsx("path", {
1405
+ d: "M6.41016 3.5L6.41016 1.5",
1406
+ stroke: "#94A3B8",
1407
+ strokeWidth: "0.8",
1408
+ strokeMiterlimit: "10",
1409
+ strokeLinecap: "round",
1410
+ strokeLinejoin: "round"
1411
+ }), /*#__PURE__*/_jsx("path", {
1412
+ d: "M7.41016 7L7.41016 5",
1413
+ stroke: "#94A3B8",
1414
+ strokeWidth: "0.8",
1415
+ strokeMiterlimit: "10",
1416
+ strokeLinecap: "round",
1417
+ strokeLinejoin: "round"
1418
+ })]
1419
+ });
1420
+ }
1421
+ export function SectionDragIcon() {
1422
+ return /*#__PURE__*/_jsxs("svg", {
1423
+ width: "6",
1424
+ height: "10",
1425
+ viewBox: "0 0 6 10",
1426
+ fill: "none",
1427
+ xmlns: "http://www.w3.org/2000/svg",
1428
+ children: [/*#__PURE__*/_jsx("ellipse", {
1429
+ cx: "0.909171",
1430
+ cy: "0.909171",
1431
+ rx: "0.909171",
1432
+ ry: "0.909171",
1433
+ fill: "#94A3B8"
1434
+ }), /*#__PURE__*/_jsx("ellipse", {
1435
+ cx: "0.909171",
1436
+ cy: "4.99999",
1437
+ rx: "0.909171",
1438
+ ry: "0.909171",
1439
+ fill: "#94A3B8"
1440
+ }), /*#__PURE__*/_jsx("ellipse", {
1441
+ cx: "0.909171",
1442
+ cy: "9.09081",
1443
+ rx: "0.909171",
1444
+ ry: "0.909171",
1445
+ fill: "#94A3B8"
1446
+ }), /*#__PURE__*/_jsx("ellipse", {
1447
+ cx: "5.00097",
1448
+ cy: "0.909171",
1449
+ rx: "0.909171",
1450
+ ry: "0.909171",
1451
+ fill: "#94A3B8"
1452
+ }), /*#__PURE__*/_jsx("ellipse", {
1453
+ cx: "5.00097",
1454
+ cy: "4.99999",
1455
+ rx: "0.909171",
1456
+ ry: "0.909171",
1457
+ fill: "#94A3B8"
1458
+ }), /*#__PURE__*/_jsx("ellipse", {
1459
+ cx: "5.00097",
1460
+ cy: "9.09081",
1461
+ rx: "0.909171",
1462
+ ry: "0.909171",
1463
+ fill: "#94A3B8"
1464
+ })]
1465
+ });
1248
1466
  }