@wavv/ui 2.2.2-alpha.5 → 2.2.2-alpha.6

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.
Files changed (229) hide show
  1. package/build/assets/icons/CaretDown.js +18 -0
  2. package/build/assets/icons/CaretUp.js +18 -0
  3. package/build/assets/icons/Checkbox.js +15 -0
  4. package/build/assets/icons/CheckboxOff.js +15 -0
  5. package/build/assets/icons/CheckboxPartial.js +15 -0
  6. package/build/assets/icons/Dialpad.js +18 -0
  7. package/build/assets/icons/Exclamation.js +25 -0
  8. package/build/assets/icons/Phone.js +13 -0
  9. package/build/assets/icons/PhoneAdd.js +21 -0
  10. package/build/assets/icons/PhoneBlocked.js +22 -0
  11. package/build/assets/icons/PhoneCallback.js +21 -0
  12. package/build/assets/icons/PhoneEnd.js +28 -0
  13. package/build/assets/icons/PhoneForward.js +22 -0
  14. package/build/assets/icons/PhoneHistory.js +21 -0
  15. package/build/assets/icons/PhoneHold.js +22 -0
  16. package/build/assets/icons/PhoneIncoming.js +22 -0
  17. package/build/assets/icons/PhoneMissed.js +22 -0
  18. package/build/assets/icons/PhoneTalk.js +22 -0
  19. package/build/assets/icons/PhoneTransfer.js +21 -0
  20. package/build/assets/icons/RadioButton.js +22 -0
  21. package/build/assets/icons/RadioButtonOff.js +15 -0
  22. package/build/assets/icons/Record.js +18 -0
  23. package/build/assets/icons/Screenshot.js +39 -0
  24. package/build/assets/icons/ShieldWavv.js +30 -0
  25. package/build/assets/icons/Spotify.js +15 -0
  26. package/build/assets/icons/SubArrow.js +16 -0
  27. package/build/assets/icons/ToggleOff.js +15 -0
  28. package/build/assets/icons/ToggleOn.js +15 -0
  29. package/build/assets/icons/TransferCancel.js +60 -0
  30. package/build/components/Accordion/Accordion.js +26 -0
  31. package/build/components/Accordion/Header.js +86 -0
  32. package/build/components/Accordion/Item.js +25 -0
  33. package/build/components/Accordion/Panel.js +64 -0
  34. package/build/components/Accordion/index.js +2 -0
  35. package/build/components/Audio.js +248 -0
  36. package/build/components/BarChart.js +123 -0
  37. package/build/components/Button/Button.js +258 -0
  38. package/build/components/Button/ButtonLoader.js +20 -0
  39. package/build/components/Button/ButtonTypes.js +0 -0
  40. package/build/components/Button/Group.js +58 -0
  41. package/build/components/Button/index.js +2 -0
  42. package/build/components/Calendar.js +49 -0
  43. package/build/components/CalendarParts/CalendarContainerStyles.js +15 -0
  44. package/build/components/CalendarParts/CalendarContent.js +138 -0
  45. package/build/components/CalendarParts/CalendarHeader.js +146 -0
  46. package/build/components/CalendarParts/useMinMax.js +23 -0
  47. package/build/components/CalendarParts/utils.js +6 -0
  48. package/build/components/ChartHelpers.js +121 -0
  49. package/build/components/Checkbox.js +85 -0
  50. package/build/components/Code/Code.js +117 -0
  51. package/build/components/Code/Copy.js +50 -0
  52. package/build/components/Code/Endpoint.js +82 -0
  53. package/build/components/Code/index.js +3 -0
  54. package/build/components/ComboBox.js +190 -0
  55. package/build/components/CommandMenu/CommandItem.js +32 -0
  56. package/build/components/CommandMenu/CommandMenu.js +136 -0
  57. package/build/components/CommandMenu/CommandOptions.js +24 -0
  58. package/build/components/CommandMenu/CommandSection.js +19 -0
  59. package/build/components/CommandMenu/index.js +2 -0
  60. package/build/components/DateRangeSelect.js +359 -0
  61. package/build/components/DocTable.js +32 -0
  62. package/build/components/Dot.js +60 -0
  63. package/build/components/DraftEditor.js +188 -0
  64. package/build/components/Dropdown.js +130 -0
  65. package/build/components/DropdownMenu.js +131 -0
  66. package/build/components/DropdownMenuParts/Menu.js +6 -0
  67. package/build/components/DropdownMenuParts/MenuItem.js +54 -0
  68. package/build/components/DropdownMenuParts/MenuOptions.js +47 -0
  69. package/build/components/DropdownMenuParts/MenuSection.js +14 -0
  70. package/build/components/DropdownSelect.js +171 -0
  71. package/build/components/DynamicIcon.js +49 -0
  72. package/build/components/Editor/Editor.js +356 -0
  73. package/build/components/Editor/EditorStyles.js +259 -0
  74. package/build/components/Editor/MergeFieldExtension.js +110 -0
  75. package/build/components/Editor/RichTextToolbar.js +515 -0
  76. package/build/components/Editor/editorUtils.js +213 -0
  77. package/build/components/Editor/index.js +3 -0
  78. package/build/components/Ellipsis.js +22 -0
  79. package/build/components/Focusable.js +20 -0
  80. package/build/components/Form.js +68 -0
  81. package/build/components/FormControl.js +72 -0
  82. package/build/components/Grid.js +53 -0
  83. package/build/components/Icon/Icon.js +89 -0
  84. package/build/components/Icon/customIcons.js +48 -0
  85. package/build/components/Icon/icons.js +145 -0
  86. package/build/components/Icon/index.js +3 -0
  87. package/build/components/ImageViewer.js +142 -0
  88. package/build/components/InlineCode.js +10 -0
  89. package/build/components/InputHelpers.js +106 -0
  90. package/build/components/Inputs/DatePicker.js +111 -0
  91. package/build/components/Inputs/DateRangePicker.js +166 -0
  92. package/build/components/Inputs/InlineInput.js +71 -0
  93. package/build/components/Inputs/NumberInput.js +117 -0
  94. package/build/components/Inputs/PhoneInput.js +96 -0
  95. package/build/components/Inputs/SearchInput.js +84 -0
  96. package/build/components/Inputs/TextArea.js +164 -0
  97. package/build/components/Inputs/TextInput.js +74 -0
  98. package/build/components/Inputs/TimeInput.js +74 -0
  99. package/build/components/Inputs/helpers/AriaButton.js +19 -0
  100. package/build/components/Inputs/helpers/DateSegment.js +22 -0
  101. package/build/components/Inputs/helpers/Description.js +11 -0
  102. package/build/components/Inputs/helpers/ErrorMessage.js +11 -0
  103. package/build/components/Inputs/helpers/Input.js +6 -0
  104. package/build/components/Inputs/helpers/InputContainerStyles.js +78 -0
  105. package/build/components/Inputs/helpers/InputMessage.js +30 -0
  106. package/build/components/Inputs/helpers/InputStyles.js +43 -0
  107. package/build/components/Inputs/helpers/Label.js +42 -0
  108. package/build/components/Inputs/helpers/LabelWrapper.js +14 -0
  109. package/build/components/Inputs/helpers/PickerToggle.js +7 -0
  110. package/build/components/Inputs/helpers/TextArea.js +8 -0
  111. package/build/components/Inputs/helpers/filterPastedText.js +9 -0
  112. package/build/components/Inputs/helpers/handlePaste.js +12 -0
  113. package/build/components/Inputs/helpers/isAcceptable.js +7 -0
  114. package/build/components/Inputs/helpers/useDynamicWidth.js +39 -0
  115. package/build/components/Inputs/helpers/useInputFocus.js +19 -0
  116. package/build/components/Label.js +42 -0
  117. package/build/components/LineChart.js +80 -0
  118. package/build/components/ListBoxParts/GridListItem.js +34 -0
  119. package/build/components/ListBoxParts/ListBoxItem.js +32 -0
  120. package/build/components/ListBoxParts/ListOptions.js +45 -0
  121. package/build/components/ListHelpers/GridListHeader.js +14 -0
  122. package/build/components/ListHelpers/GridListSection.js +14 -0
  123. package/build/components/ListHelpers/ItemHeaderBody.js +36 -0
  124. package/build/components/ListHelpers/ListHeader.js +14 -0
  125. package/build/components/ListHelpers/ListItemStyles.js +52 -0
  126. package/build/components/ListHelpers/ListRootStyles.js +14 -0
  127. package/build/components/ListHelpers/ListSection.js +14 -0
  128. package/build/components/ListHelpers/ListStyles.js +29 -0
  129. package/build/components/Menu.js +159 -0
  130. package/build/components/Message.js +107 -0
  131. package/build/components/MessageHr.js +32 -0
  132. package/build/components/Modal.js +212 -0
  133. package/build/components/MotionPopover.js +39 -0
  134. package/build/components/MultiSelect/MultiSelect.js +263 -0
  135. package/build/components/MultiSelect/SearchDropdown.js +155 -0
  136. package/build/components/MultiSelect/index.js +2 -0
  137. package/build/components/OptionHelpers/Container.js +34 -0
  138. package/build/components/OptionHelpers/Item.js +59 -0
  139. package/build/components/OptionHelpers/types.js +0 -0
  140. package/build/components/Pagination.js +121 -0
  141. package/build/components/PieChart.js +40 -0
  142. package/build/components/Popover.js +40 -0
  143. package/build/components/PortalScope.js +8 -0
  144. package/build/components/Progress/CirclePercent.js +56 -0
  145. package/build/components/Progress/Progress.js +59 -0
  146. package/build/components/Progress/index.js +3 -0
  147. package/build/components/Radio.js +45 -0
  148. package/build/components/RangeCalendar.js +60 -0
  149. package/build/components/Select.js +162 -0
  150. package/build/components/Slider.js +50 -0
  151. package/build/components/Spinner.js +70 -0
  152. package/build/components/Table/Body.js +49 -0
  153. package/build/components/Table/Cell.js +63 -0
  154. package/build/components/Table/Check.js +35 -0
  155. package/build/components/Table/Column.js +129 -0
  156. package/build/components/Table/ColumnSort.js +26 -0
  157. package/build/components/Table/Header.js +64 -0
  158. package/build/components/Table/Resizer.js +25 -0
  159. package/build/components/Table/Row.js +84 -0
  160. package/build/components/Table/SortCaret.js +24 -0
  161. package/build/components/Table/Table.js +88 -0
  162. package/build/components/Table/contentStyles.js +20 -0
  163. package/build/components/Table/context.js +4 -0
  164. package/build/components/Table/index.js +2 -0
  165. package/build/components/Table/types.js +0 -0
  166. package/build/components/Tabs.js +151 -0
  167. package/build/components/Tag.js +71 -0
  168. package/build/components/Toggle.js +59 -0
  169. package/build/components/ToggleButton/ToggleButton.js +104 -0
  170. package/build/components/ToggleButton/ToggleButtonGroup.js +36 -0
  171. package/build/components/ToggleButton/context.js +8 -0
  172. package/build/components/ToggleButton/index.js +3 -0
  173. package/build/components/Tooltip.js +136 -0
  174. package/build/components/TransferList.js +234 -0
  175. package/build/components/Tree/Tree.js +69 -0
  176. package/build/components/Tree/TreeContext.js +3 -0
  177. package/build/components/Tree/TreeItem.js +93 -0
  178. package/build/components/Tree/index.js +2 -0
  179. package/build/components/UnstyledButton.js +8 -0
  180. package/build/components/Waveform.js +243 -0
  181. package/build/components/draftUtils.js +193 -0
  182. package/build/components/helpers/getIcon.js +28 -0
  183. package/build/components/helpers/getPopPosition.js +20 -0
  184. package/build/components/helpers/isPropAllowed.js +3 -0
  185. package/build/components/helpers/mergePadding.js +47 -0
  186. package/build/components/helpers/styledProps.js +34 -0
  187. package/build/components/typeDefs/elementTypes.js +0 -0
  188. package/build/components/typeDefs/inputTypes.js +0 -0
  189. package/build/components/typeDefs/selectionTypes.js +0 -0
  190. package/build/components/typeDefs/tagTypes.js +0 -0
  191. package/build/components/types.js +0 -0
  192. package/build/global-styles/GlobalStorybookStyles.js +108 -0
  193. package/build/global-styles/ResetStyles.js +33 -0
  194. package/build/global-styles/ScrollbarStyles.js +26 -0
  195. package/build/global-styles/ToastStyles.js +66 -0
  196. package/build/global-styles/index.js +4 -0
  197. package/build/hooks/index.js +9 -0
  198. package/build/hooks/useConfirm.js +91 -0
  199. package/build/hooks/useControlledOpenState.js +22 -0
  200. package/build/hooks/useCopy.js +28 -0
  201. package/build/hooks/useElementObserver.js +6 -0
  202. package/build/hooks/useEventListener.js +19 -0
  203. package/build/hooks/useOnClickOutside.js +21 -0
  204. package/build/hooks/usePrevious.js +12 -0
  205. package/build/hooks/useSelectAll.js +60 -0
  206. package/build/hooks/useWindowSize.js +25 -0
  207. package/build/theme/ThemeTypes.js +0 -0
  208. package/build/theme/common/button.js +33 -0
  209. package/build/theme/common/common.js +38 -0
  210. package/build/theme/common/index.js +4 -0
  211. package/build/theme/core/colors.js +77 -0
  212. package/build/theme/core/dark/dark.js +457 -0
  213. package/build/theme/core/dark/darkScale.js +36 -0
  214. package/build/theme/core/light/light.js +456 -0
  215. package/build/theme/core/light/lightScale.js +35 -0
  216. package/build/theme/eighties/colors.js +78 -0
  217. package/build/theme/eighties/dark/dark.js +457 -0
  218. package/build/theme/eighties/dark/darkScale.js +36 -0
  219. package/build/theme/eighties/light/light.js +456 -0
  220. package/build/theme/eighties/light/lightScale.js +35 -0
  221. package/build/theme/index.js +28 -0
  222. package/build/utils/chunk.js +13 -0
  223. package/build/utils/copyToClipboard.js +29 -0
  224. package/build/utils/flattenListOptions.js +4 -0
  225. package/build/utils/formatDate.js +55 -0
  226. package/build/utils/index.js +6 -0
  227. package/build/utils/numberWithCommas.js +3 -0
  228. package/build/utils/range.js +11 -0
  229. package/package.json +1 -1
@@ -0,0 +1,18 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function CaretDown(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M9.00375 10.7961L12.0038 13.7961L15.0038 10.7961",
10
+ stroke: "currentColor",
11
+ strokeWidth: "1.5",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ })
15
+ });
16
+ }
17
+ const icons_CaretDown = CaretDown;
18
+ export { icons_CaretDown as default };
@@ -0,0 +1,18 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function CaretUp(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M15.0038 13.2036L12.0038 10.2036L9.00375 13.2036",
10
+ stroke: "currentColor",
11
+ strokeWidth: "1.5",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ })
15
+ });
16
+ }
17
+ const icons_CaretUp = CaretUp;
18
+ export { icons_CaretUp as default };
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function Checkbox_Checkbox(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3ZM10.71 16.29C10.32 16.68 9.69 16.68 9.3 16.29L5.71 12.7C5.32 12.31 5.32 11.68 5.71 11.29C6.1 10.9 6.73 10.9 7.12 11.29L10 14.17L16.88 7.29C17.27 6.9 17.9 6.9 18.29 7.29C18.68 7.68 18.68 8.31 18.29 8.7L10.71 16.29Z",
10
+ fill: "currentColor"
11
+ })
12
+ });
13
+ }
14
+ const Checkbox = Checkbox_Checkbox;
15
+ export { Checkbox as default };
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function CheckboxOff(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M18 19H6C5.45 19 5 18.55 5 18V6C5 5.45 5.45 5 6 5H18C18.55 5 19 5.45 19 6V18C19 18.55 18.55 19 18 19ZM19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3Z",
10
+ fill: "currentColor"
11
+ })
12
+ });
13
+ }
14
+ const icons_CheckboxOff = CheckboxOff;
15
+ export { icons_CheckboxOff as default };
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function CheckboxPartial(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3ZM16 13H8C7.45 13 7 12.55 7 12C7 11.45 7.45 11 8 11H16C16.55 11 17 11.45 17 12C17 12.55 16.55 13 16 13Z",
10
+ fill: "currentColor"
11
+ })
12
+ });
13
+ }
14
+ const icons_CheckboxPartial = CheckboxPartial;
15
+ export { icons_CheckboxPartial as default };
@@ -0,0 +1,18 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function Dialpad(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M11.99 3H12.01M11.99 9H12.01M17.99 9H18.01M17.99 15H18.01M11.99 15H12.01M11.99 21H12.01M17.99 3H18.01M5.98999 3H6.00999M5.98999 9H6.00999M5.98999 15H6.00999",
10
+ stroke: "currentColor",
11
+ strokeWidth: "4",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ })
15
+ });
16
+ }
17
+ const icons_Dialpad = Dialpad;
18
+ export { icons_Dialpad as default };
@@ -0,0 +1,25 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const Exclamation_Exclamation = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M11.995 5V15",
10
+ stroke: "currentColor",
11
+ strokeWidth: "3",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M11.995 20H12.015",
17
+ stroke: "currentColor",
18
+ strokeWidth: "3",
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round"
21
+ })
22
+ ]
23
+ });
24
+ const Exclamation = Exclamation_Exclamation;
25
+ export { Exclamation as default };
@@ -0,0 +1,13 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const Phone = (props)=>/*#__PURE__*/ jsx("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: /*#__PURE__*/ jsx("path", {
8
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
9
+ fill: "currentColor"
10
+ })
11
+ });
12
+ const icons_Phone = Phone;
13
+ export { icons_Phone as default };
@@ -0,0 +1,21 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneAdd = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
10
+ fill: "currentColor"
11
+ }),
12
+ /*#__PURE__*/ jsx("path", {
13
+ d: "M12.775 7.2251H20.775M16.775 3.2251V11.2251",
14
+ stroke: "currentColor",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ })
18
+ ]
19
+ });
20
+ const icons_PhoneAdd = PhoneAdd;
21
+ export { icons_PhoneAdd as default };
@@ -0,0 +1,22 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneBlocked = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M18.8456 5.06128L3.84558 21.0613",
10
+ stroke: "currentColor",
11
+ strokeWidth: 1.5,
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
17
+ fill: "currentColor"
18
+ })
19
+ ]
20
+ });
21
+ const icons_PhoneBlocked = PhoneBlocked;
22
+ export { icons_PhoneBlocked as default };
@@ -0,0 +1,21 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneCallback = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
10
+ fill: "currentColor"
11
+ }),
12
+ /*#__PURE__*/ jsx("path", {
13
+ d: "M15.288 8.21704L12.788 5.71704M12.788 5.71704L15.288 3.21704M12.788 5.71704H18.038C18.3991 5.71704 18.7567 5.78817 19.0903 5.92637C19.424 6.06457 19.7271 6.26714 19.9825 6.5225C20.2379 6.77786 20.4404 7.08102 20.5786 7.41466C20.7168 7.74831 20.788 8.10591 20.788 8.46704C20.788 8.82818 20.7168 9.18578 20.5786 9.51942C20.4404 9.85307 20.2379 10.1562 19.9825 10.4116C19.7271 10.6669 19.424 10.8695 19.0903 11.0077C18.7567 11.1459 18.3991 11.217 18.038 11.217H16.288",
14
+ stroke: "currentColor",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ })
18
+ ]
19
+ });
20
+ const icons_PhoneCallback = PhoneCallback;
21
+ export { icons_PhoneCallback as default };
@@ -0,0 +1,28 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneEnd_PhoneEnd = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("g", {
9
+ clipPath: "url(#clip0_109_1904)",
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ d: "M8.04315 9.68071C7.86095 9.74823 7.72347 10.0135 7.62347 10.1801C7.52346 10.3467 7.64597 11.0613 7.67206 11.2539L7.73857 11.7496C7.77611 12.0124 7.75195 12.2804 7.668 12.5322C7.58405 12.7841 7.44262 13.0129 7.25491 13.2006L5.44118 15.0143C5.12049 15.335 4.68554 15.5152 4.23202 15.5152C3.7785 15.5152 3.34356 15.335 3.02287 15.0143L1.20914 13.2006C0.888456 12.8799 0.708295 12.445 0.708295 11.9915C0.708295 11.5379 0.888456 11.103 1.20914 10.7823C4.09533 7.89612 8.00983 6.27468 12.0915 6.27468C16.1732 6.27468 20.0877 7.89612 22.9739 10.7823C23.2946 11.103 23.4747 11.5379 23.4747 11.9915C23.4747 12.445 23.2946 12.8799 22.9739 13.2006L21.1602 15.0143C20.8395 15.335 20.4045 15.5152 19.951 15.5152C19.4975 15.5152 19.0625 15.335 18.7419 15.0143L16.9281 13.2006C16.7404 13.0129 16.599 12.7841 16.515 12.5322C16.4311 12.2804 16.4069 12.0124 16.4445 11.7496L16.5152 11.2545C16.5414 11.0587 16.6101 10.5459 16.5064 10.3778C16.4027 10.2098 15.9539 9.74021 15.7672 9.67587C13.2627 8.82391 10.5466 8.82561 8.04315 9.68071Z",
12
+ fill: "currentColor"
13
+ })
14
+ }),
15
+ /*#__PURE__*/ jsx("defs", {
16
+ children: /*#__PURE__*/ jsx("clipPath", {
17
+ id: "clip0_109_1904",
18
+ children: /*#__PURE__*/ jsx("rect", {
19
+ width: 24,
20
+ height: 24,
21
+ fill: "currentColor"
22
+ })
23
+ })
24
+ })
25
+ ]
26
+ });
27
+ const PhoneEnd = PhoneEnd_PhoneEnd;
28
+ export { PhoneEnd as default };
@@ -0,0 +1,22 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneForward_PhoneForward = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M12.1838 7.06616H20.1838M20.1838 7.06616L16.1838 3.06616M20.1838 7.06616L16.1838 11.0662",
10
+ stroke: "currentColor",
11
+ strokeWidth: 1.5,
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
17
+ fill: "currentColor"
18
+ })
19
+ ]
20
+ });
21
+ const PhoneForward = PhoneForward_PhoneForward;
22
+ export { PhoneForward as default };
@@ -0,0 +1,21 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneHistory = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
10
+ fill: "currentColor"
11
+ }),
12
+ /*#__PURE__*/ jsx("path", {
13
+ d: "M16.775 4.8251V7.2251L18.375 8.0251M20.775 7.2251C20.775 9.43424 18.9842 11.2251 16.775 11.2251C14.5659 11.2251 12.775 9.43424 12.775 7.2251C12.775 5.01596 14.5659 3.2251 16.775 3.2251C18.9842 3.2251 20.775 5.01596 20.775 7.2251Z",
14
+ stroke: "currentColor",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ })
18
+ ]
19
+ });
20
+ const icons_PhoneHistory = PhoneHistory;
21
+ export { icons_PhoneHistory as default };
@@ -0,0 +1,22 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneHold_PhoneHold = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
10
+ fill: "currentColor"
11
+ }),
12
+ /*#__PURE__*/ jsx("path", {
13
+ d: "M15 10V4M19 10V4",
14
+ stroke: "currentColor",
15
+ strokeWidth: 1.5,
16
+ strokeLinecap: "round",
17
+ strokeLinejoin: "round"
18
+ })
19
+ ]
20
+ });
21
+ const PhoneHold = PhoneHold_PhoneHold;
22
+ export { PhoneHold as default };
@@ -0,0 +1,22 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneIncoming = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M13.788 3.98657V9.98657M13.788 9.98657H19.788M13.788 9.98657L19.788 3.98657",
10
+ stroke: "currentColor",
11
+ strokeWidth: 1.5,
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
17
+ fill: "currentColor"
18
+ })
19
+ ]
20
+ });
21
+ const icons_PhoneIncoming = PhoneIncoming;
22
+ export { icons_PhoneIncoming as default };
@@ -0,0 +1,22 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneMissed = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M13.775 4L19.775 10M19.775 4L13.775 10",
10
+ stroke: "currentColor",
11
+ strokeWidth: 1.5,
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
17
+ fill: "currentColor"
18
+ })
19
+ ]
20
+ });
21
+ const icons_PhoneMissed = PhoneMissed;
22
+ export { icons_PhoneMissed as default };
@@ -0,0 +1,22 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneTalk = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M12 3.3999C13.8565 3.3999 15.637 4.24276 16.9497 5.74305C18.2625 7.24334 19 9.27817 19 11.3999M12 6.95546C13.0314 6.95546 14.0206 7.42371 14.7499 8.25721C15.4792 9.0907 15.8889 10.2212 15.8889 11.3999",
10
+ stroke: "currentColor",
11
+ strokeWidth: 1.5,
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
17
+ fill: "currentColor"
18
+ })
19
+ ]
20
+ });
21
+ const icons_PhoneTalk = PhoneTalk;
22
+ export { icons_PhoneTalk as default };
@@ -0,0 +1,21 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const PhoneTransfer = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M12.7787 15.9465C12.9553 16.0276 13.24 15.9372 13.4286 15.8901C13.6171 15.843 14.0358 15.2511 14.1535 15.0965L14.457 14.6989C14.6163 14.4865 14.8228 14.3142 15.0603 14.1954C15.2977 14.0767 15.5595 14.0149 15.825 14.0149H18.39C18.8435 14.0149 19.2785 14.1951 19.5992 14.5158C19.9198 14.8364 20.1 15.2714 20.1 15.7249V18.2899C20.1 18.7434 19.9198 19.1784 19.5992 19.4991C19.2785 19.8197 18.8435 19.9999 18.39 19.9999C14.3083 19.9999 10.3938 18.3785 7.50763 15.4923C4.62144 12.6061 3 8.69158 3 4.6099C3 4.15638 3.18016 3.72144 3.50085 3.40075C3.82153 3.08006 4.25648 2.8999 4.71 2.8999L7.275 2.8999C7.72852 2.8999 8.16347 3.08006 8.48415 3.40075C8.80484 3.72144 8.985 4.15638 8.985 4.6099V7.1749C8.985 7.44037 8.92319 7.7022 8.80447 7.93964C8.68575 8.17708 8.51338 8.38362 8.301 8.5429L7.90086 8.84301C7.7439 8.96286 7.3327 9.27691 7.28719 9.46908C7.24168 9.66126 7.22699 10.3106 7.31353 10.4882C8.48204 12.8615 10.4039 14.7809 12.7787 15.9465Z",
10
+ fill: "currentColor"
11
+ }),
12
+ /*#__PURE__*/ jsx("path", {
13
+ d: "M18.788 3.21704L20.788 4.99482M20.788 4.99482L18.788 6.7726M20.788 4.99482H12.788M14.788 11.217L12.788 9.43926M12.788 9.43926L14.788 7.66149M12.788 9.43926H20.788",
14
+ stroke: "currentColor",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ })
18
+ ]
19
+ });
20
+ const icons_PhoneTransfer = PhoneTransfer;
21
+ export { icons_PhoneTransfer as default };
@@ -0,0 +1,22 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ function RadioButton(props) {
3
+ return /*#__PURE__*/ jsxs("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: [
9
+ /*#__PURE__*/ jsx("path", {
10
+ d: "M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20Z",
11
+ fill: "currentColor"
12
+ }),
13
+ /*#__PURE__*/ jsx("path", {
14
+ className: "radio-fill",
15
+ d: "M12 17C14.7614 17 17 14.7614 17 12C17 9.23858 14.7614 7 12 7C9.23858 7 7 9.23858 7 12C7 14.7614 9.23858 17 12 17Z",
16
+ fill: "currentColor"
17
+ })
18
+ ]
19
+ });
20
+ }
21
+ const icons_RadioButton = RadioButton;
22
+ export { icons_RadioButton as default };
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function RadioButtonOff(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20Z",
10
+ fill: "currentColor"
11
+ })
12
+ });
13
+ }
14
+ const icons_RadioButtonOff = RadioButtonOff;
15
+ export { icons_RadioButtonOff as default };
@@ -0,0 +1,18 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function Record_Record(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 24 24",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M12 12H12.02",
10
+ stroke: "currentColor",
11
+ strokeWidth: "12",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ })
15
+ });
16
+ }
17
+ const Record = Record_Record;
18
+ export { Record as default };
@@ -0,0 +1,39 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const Screenshot = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M17 2H7C5.89543 2 5 2.89543 5 4V20C5 21.1046 5.89543 22 7 22H17C18.1046 22 19 21.1046 19 20V4C19 2.89543 18.1046 2 17 2Z",
10
+ stroke: "currentColor",
11
+ strokeWidth: "1.5",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M12 19H12.01",
17
+ stroke: "currentColor",
18
+ strokeWidth: "1.5",
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round"
21
+ }),
22
+ /*#__PURE__*/ jsx("path", {
23
+ d: "M7.58588 10.2433V4.58648H13.2427",
24
+ stroke: "currentColor",
25
+ strokeWidth: "1.5",
26
+ strokeLinecap: "round",
27
+ strokeLinejoin: "round"
28
+ }),
29
+ /*#__PURE__*/ jsx("path", {
30
+ d: "M16.4142 10.7574V16.4142H10.7574",
31
+ stroke: "currentColor",
32
+ strokeWidth: "1.5",
33
+ strokeLinecap: "round",
34
+ strokeLinejoin: "round"
35
+ })
36
+ ]
37
+ });
38
+ const icons_Screenshot = Screenshot;
39
+ export { icons_Screenshot as default };
@@ -0,0 +1,30 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const ShieldWavv_ShieldWavv = (props)=>/*#__PURE__*/ jsxs("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: [
8
+ /*#__PURE__*/ jsx("path", {
9
+ d: "M20 13C20 18 16.5 20.5 12.34 21.95C12.1222 22.0238 11.8855 22.0202 11.67 21.94C7.5 20.5 4 18 4 13V5.99996C4 5.73474 4.10536 5.48039 4.29289 5.29285C4.48043 5.10532 4.73478 4.99996 5 4.99996C7 4.99996 9.5 3.79996 11.24 2.27996C11.4519 2.09896 11.7214 1.99951 12 1.99951C12.2786 1.99951 12.5481 2.09896 12.76 2.27996C14.51 3.80996 17 4.99996 19 4.99996C19.2652 4.99996 19.5196 5.10532 19.7071 5.29285C19.8946 5.48039 20 5.73474 20 5.99996V13Z",
10
+ stroke: "currentColor",
11
+ strokeWidth: "1.5",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ }),
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M11.6386 15.2498C11.65 15.2749 11.6549 15.3023 11.653 15.3298C11.651 15.3572 11.6421 15.3837 11.6273 15.4068C11.6124 15.4299 11.5919 15.4489 11.5678 15.4621C11.5437 15.4753 11.5166 15.4822 11.4891 15.4822H10.0515C10.0205 15.4819 9.99013 15.4729 9.964 15.4561C9.93786 15.4394 9.91702 15.4155 9.90388 15.3874V15.3874L7.01542 9.19414C7.00377 9.1692 6.99859 9.14174 7.00033 9.11427C7.00207 9.0868 7.01069 9.06021 7.02539 9.03694C7.0401 9.01368 7.06041 8.99448 7.08447 8.98111C7.10853 8.96775 7.13556 8.96064 7.16308 8.96045V8.96321H8.60386V8.96045C8.63515 8.9604 8.66581 8.9693 8.69221 8.98609C8.71862 9.00288 8.73968 9.02686 8.75291 9.05521H8.74877L11.6386 15.2498Z",
17
+ fill: "currentColor"
18
+ }),
19
+ /*#__PURE__*/ jsx("path", {
20
+ d: "M14.312 15.2498C14.3234 15.2749 14.3283 15.3023 14.3263 15.3298C14.3243 15.3572 14.3155 15.3837 14.3006 15.4068C14.2857 15.4299 14.2653 15.4489 14.2411 15.4621C14.217 15.4753 14.1899 15.4822 14.1625 15.4822H12.7249C12.6938 15.4819 12.6634 15.4728 12.6372 15.4559C12.6111 15.4391 12.5903 15.4152 12.5772 15.3869L9.68876 9.19414C9.67711 9.1692 9.67193 9.14174 9.67367 9.11427C9.67541 9.0868 9.68403 9.06021 9.69873 9.03694C9.71344 9.01368 9.73375 8.99448 9.75781 8.98111C9.78187 8.96775 9.8089 8.96064 9.83642 8.96045V8.96321H11.2772V8.96045C11.3085 8.9604 11.3391 8.9693 11.3656 8.98609C11.392 9.00288 11.413 9.02686 11.4263 9.05521H11.4221L14.312 15.2498Z",
21
+ fill: "currentColor"
22
+ }),
23
+ /*#__PURE__*/ jsx("path", {
24
+ d: "M16.9852 15.2498C16.9966 15.2749 17.0015 15.3023 16.9996 15.3298C16.9976 15.3572 16.9887 15.3837 16.9739 15.4068C16.959 15.4299 16.9385 15.4489 16.9144 15.4621C16.8903 15.4753 16.8632 15.4822 16.8357 15.4822H15.3968C15.3661 15.4821 15.3362 15.4734 15.3102 15.4571C15.2843 15.4409 15.2634 15.4177 15.25 15.3901V15.3901L12.3606 9.19414C12.349 9.1692 12.3438 9.14174 12.3455 9.11427C12.3473 9.0868 12.3559 9.06021 12.3706 9.03694C12.3853 9.01368 12.4056 8.99448 12.4297 8.98111C12.4537 8.96775 12.4808 8.96064 12.5083 8.96045V8.96321H13.9463V8.96045C13.9776 8.9604 14.0083 8.9693 14.0347 8.98609C14.0611 9.00288 14.0821 9.02686 14.0954 9.05521H14.0912L16.9852 15.2498Z",
25
+ fill: "currentColor"
26
+ })
27
+ ]
28
+ });
29
+ const ShieldWavv = ShieldWavv_ShieldWavv;
30
+ export { ShieldWavv as default };
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function Spotify(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 25 25",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: /*#__PURE__*/ jsx("path", {
8
+ d: "M19.894 11.082C15.864 8.689 9.22 8.469 5.372 9.636a1.169 1.169 0 1 1-.679-2.237C9.11 6.059 16.45 6.317 21.088 9.07a1.17 1.17 0 0 1-1.194 2.01zm-.132 3.544a.975.975 0 0 1-1.34.32c-3.36-2.064-8.482-2.662-12.456-1.456a.976.976 0 0 1-1.216-.65.976.976 0 0 1 .65-1.215c4.54-1.377 10.183-.71 14.042 1.66a.975.975 0 0 1 .32 1.34zm-1.53 3.403a.778.778 0 0 1-1.07.26c-2.936-1.794-6.63-2.2-10.982-1.206a.779.779 0 1 1-.347-1.518c4.762-1.089 8.846-.62 12.141 1.393a.78.78 0 0 1 .259 1.071zM12.5 0C5.597 0 0 5.596 0 12.5S5.597 25 12.5 25C19.404 25 25 19.404 25 12.5S19.404 0 12.5 0z",
9
+ fill: "currentColor",
10
+ fillRule: "evenodd"
11
+ })
12
+ });
13
+ }
14
+ const icons_Spotify = Spotify;
15
+ export { icons_Spotify as default };
@@ -0,0 +1,16 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ const SubArrow = (props)=>/*#__PURE__*/ jsx("svg", {
3
+ viewBox: "0 0 24 24",
4
+ fill: "none",
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ ...props,
7
+ children: /*#__PURE__*/ jsx("path", {
8
+ d: "M18 7L23 12M23 12L18 17M23 12H11C9.93913 12 8.92172 11.5786 8.17157 10.8284C7.42143 10.0783 7 9.06087 7 8V1",
9
+ stroke: "currentColor",
10
+ strokeWidth: "1.5",
11
+ strokeLinecap: "round",
12
+ strokeLinejoin: "round"
13
+ })
14
+ });
15
+ const icons_SubArrow = SubArrow;
16
+ export { icons_SubArrow as default };
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function ToggleOff(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 34 17",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M25 0C29.5999 0 33.3328 3.73316 33.333 8.33301C33.333 12.933 29.6 16.667 25 16.667H8.33301C3.73316 16.6668 0 12.9329 0 8.33301C0.000176014 3.73327 3.73327 0.000176333 8.33301 0H25ZM7.66699 3.33301C4.90568 3.33301 2.66717 5.57174 2.66699 8.33301C2.66699 11.0944 4.90557 13.333 7.66699 13.333C10.4282 13.3328 12.667 11.0943 12.667 8.33301C12.6668 5.57186 10.4281 3.33321 7.66699 3.33301Z",
10
+ fill: "currentColor"
11
+ })
12
+ });
13
+ }
14
+ const icons_ToggleOff = ToggleOff;
15
+ export { icons_ToggleOff as default };
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function ToggleOn(props) {
3
+ return /*#__PURE__*/ jsx("svg", {
4
+ viewBox: "0 0 34 17",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...props,
8
+ children: /*#__PURE__*/ jsx("path", {
9
+ d: "M25.333 0C29.9329 0 33.6658 3.73316 33.666 8.33301C33.666 12.933 29.933 16.667 25.333 16.667H8.66602C4.06616 16.6668 0.333008 12.9329 0.333008 8.33301C0.333184 3.73327 4.06627 0.000176333 8.66602 0H25.333ZM26 3.33301C23.2387 3.33301 21.0002 5.57174 21 8.33301C21 11.0944 23.2386 13.333 26 13.333C28.7613 13.3328 31 11.0943 31 8.33301C30.9998 5.57186 28.7611 3.33321 26 3.33301Z",
10
+ fill: "currentColor"
11
+ })
12
+ });
13
+ }
14
+ const icons_ToggleOn = ToggleOn;
15
+ export { icons_ToggleOn as default };