@inceptionbg/iui 2.0.5 → 2.0.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 (253) hide show
  1. package/dist/icons/index.d.ts +43 -0
  2. package/dist/icons/index.js +1 -0
  3. package/dist/index.d.ts +24 -15
  4. package/dist/index.js +1 -1
  5. package/dist/index.js.map +1 -1
  6. package/dist/iui.css +1 -1
  7. package/idea/Menu/Menu.tsx +119 -0
  8. package/idea/Menu/MenuItem.tsx +74 -0
  9. package/idea/Menu/hooks/useMenuControl.ts +13 -0
  10. package/idea/Menu.tsx +132 -0
  11. package/idea/NoAccessInfo.tsx +193 -0
  12. package/idea/Notifications.tsx +245 -0
  13. package/idea/Table2/Components/Columns/ColumnsList.tsx +56 -0
  14. package/idea/Table2/Components/Columns/SetColumnsList.tsx +107 -0
  15. package/idea/Table2/Components/Edit/ItemActionsMenu.tsx +87 -0
  16. package/idea/Table2/Components/Edit/ItemEditOptionsButtons.tsx +32 -0
  17. package/idea/Table2/Components/Edit/TableEditRow.tsx +56 -0
  18. package/idea/Table2/Components/FilterItem.tsx +20 -0
  19. package/idea/Table2/Components/Header/TableHeader.tsx +35 -0
  20. package/idea/Table2/Components/Header/TableHeaderRow.tsx +37 -0
  21. package/idea/Table2/Components/Print/CustomTablePrint.tsx +119 -0
  22. package/idea/Table2/Components/Print/TablePrint.tsx +208 -0
  23. package/idea/Table2/Components/SetSortList.tsx +33 -0
  24. package/idea/Table2/Components/SetTableFilter.tsx +90 -0
  25. package/idea/Table2/Components/TableFooter.tsx +107 -0
  26. package/idea/Table2/Components/TableOptions.tsx +211 -0
  27. package/idea/Table2/Components/Templates/TemplateCreate.tsx +75 -0
  28. package/idea/Table2/Components/Templates/TemplateCreateDefault.tsx +45 -0
  29. package/idea/Table2/Components/Templates/TemplateList.tsx +167 -0
  30. package/idea/Table2/Components/Templates/repo/TemplateRepo.ts +51 -0
  31. package/idea/Table2/Table.tsx +657 -0
  32. package/idea/Table2/_table.scss +300 -0
  33. package/idea/Table2/hooks/useDefaultTemplate.ts +22 -0
  34. package/idea/Table2/hooks/useTableKeyboard.ts +115 -0
  35. package/package.json +8 -4
  36. package/rollup.config.js +80 -0
  37. package/src/assets/icons/duotone/faCircleUser.ts +17 -0
  38. package/src/assets/icons/index.ts +20 -0
  39. package/src/assets/icons/light/faArrowDownShortWide.ts +15 -0
  40. package/src/assets/icons/light/faArrowDownWideShort.ts +15 -0
  41. package/src/assets/icons/light/faArrowUpArrowDown.ts +15 -0
  42. package/src/assets/icons/light/faArrowUpRightFromSquare.ts +15 -0
  43. package/src/assets/icons/light/faArrowsToLine.ts +15 -0
  44. package/src/assets/icons/light/faArrowsUpDown.ts +15 -0
  45. package/src/assets/icons/light/faCalendarPlus.ts +15 -0
  46. package/src/assets/icons/light/faCheck.ts +15 -0
  47. package/src/assets/icons/light/faChevronDown.ts +15 -0
  48. package/src/assets/icons/light/faChevronRight.ts +15 -0
  49. package/src/assets/icons/light/faCircleInfo.ts +15 -0
  50. package/src/assets/icons/light/faCircleXmark.ts +15 -0
  51. package/src/assets/icons/light/faClockRotateLeft.ts +15 -0
  52. package/src/assets/icons/light/faEllipsisVertical.ts +15 -0
  53. package/src/assets/icons/light/faEye.ts +15 -0
  54. package/src/assets/icons/light/faEyeSlash.ts +15 -0
  55. package/src/assets/icons/light/faFilter.ts +15 -0
  56. package/src/assets/icons/light/faGear.ts +15 -0
  57. package/src/assets/icons/light/faHouse.ts +15 -0
  58. package/src/assets/icons/light/faIdBadge.ts +15 -0
  59. package/src/assets/icons/light/faLineColumns.ts +15 -0
  60. package/src/assets/icons/light/faLink.ts +15 -0
  61. package/src/assets/icons/light/faMagnifyingGlass.ts +15 -0
  62. package/src/assets/icons/light/faPenField.ts +15 -0
  63. package/src/assets/icons/light/faPrint.ts +15 -0
  64. package/src/assets/icons/light/faQuestion.ts +15 -0
  65. package/src/assets/icons/light/faRotateRight.ts +15 -0
  66. package/src/assets/icons/light/faTrashCan.ts +15 -0
  67. package/src/assets/icons/light/faTriangleExclamation.ts +15 -0
  68. package/src/assets/icons/light/faXmark.ts +15 -0
  69. package/src/assets/icons/regular/faArrowLeft.ts +15 -0
  70. package/src/assets/icons/regular/faArrowRightArrowLeft.ts +15 -0
  71. package/src/assets/icons/regular/faCircleCheck.ts +15 -0
  72. package/src/assets/icons/regular/faCircleExclamation.ts +15 -0
  73. package/src/assets/icons/regular/faCircleInfo.ts +15 -0
  74. package/src/assets/icons/regular/faFileArrowDown.ts +15 -0
  75. package/src/assets/icons/regular/faFilterCircleXmark.ts +15 -0
  76. package/src/assets/icons/regular/faTriangleExclamation.ts +15 -0
  77. package/src/assets/icons/solid/faAngleLeft.ts +15 -0
  78. package/src/assets/icons/solid/faAngleRight.ts +15 -0
  79. package/src/assets/icons/solid/faArrowDownWideShort.ts +15 -0
  80. package/src/assets/icons/solid/faCaretDown.ts +15 -0
  81. package/src/assets/icons/solid/faCheck.ts +15 -0
  82. package/src/assets/icons/solid/faEllipsisVertical.ts +15 -0
  83. package/src/assets/icons/solid/faFilter.ts +15 -0
  84. package/src/assets/icons/solid/faFloppyDisk.ts +15 -0
  85. package/src/assets/icons/solid/faGripDotsVertical.ts +15 -0
  86. package/src/assets/icons/solid/faListUl.ts +15 -0
  87. package/src/assets/icons/solid/faMagnifyingGlass.ts +15 -0
  88. package/src/assets/icons/solid/faMinus.ts +15 -0
  89. package/src/assets/icons/solid/faPlus.ts +15 -0
  90. package/src/assets/icons/solid/faPrint.ts +15 -0
  91. package/src/assets/icons/solid/faRotateRight.ts +15 -0
  92. package/src/assets/icons/solid/faXmark.ts +15 -0
  93. package/src/assets/images/logo/mts.svg +5703 -0
  94. package/src/assets/images/logo/paperless.svg +21 -0
  95. package/src/assets/images/logo/pismonosa.png +0 -0
  96. package/src/assets/images/not-found.svg +19 -0
  97. package/src/components/Accordions/Accordions.tsx +64 -0
  98. package/src/components/Alert/Alert.tsx +31 -0
  99. package/src/components/Badge/DotBadge.tsx +16 -0
  100. package/src/components/Badge/NotificationBadge.tsx +29 -0
  101. package/src/components/Badge/PillBadge.tsx +13 -0
  102. package/src/components/Button/Button.tsx +56 -0
  103. package/src/components/Button/IconButton.tsx +49 -0
  104. package/src/components/Dashboard/Dashboard.tsx +9 -0
  105. package/src/components/Dashboard/DashboardWidget.tsx +44 -0
  106. package/src/components/Dashboard/FastLinksWidget/FastLinksWidget.tsx +37 -0
  107. package/src/components/Dialog/DeleteItemDialog.tsx +52 -0
  108. package/src/components/Dialog/Dialog.tsx +226 -0
  109. package/src/components/Dialog/hooks/useDialogKeyboard.ts +41 -0
  110. package/src/components/Dialog/hooks/useDialogObserver.ts +21 -0
  111. package/src/components/Header/Components/ModuleSelect.tsx +55 -0
  112. package/src/components/Header/Components/UserMenu.tsx +44 -0
  113. package/src/components/Header/Header.tsx +36 -0
  114. package/src/components/Helper/Collapse.tsx +52 -0
  115. package/src/components/Inputs/Checkbox.tsx +53 -0
  116. package/src/components/Inputs/CurrencyInput.tsx +123 -0
  117. package/src/components/Inputs/DateInput/DateInput.tsx +176 -0
  118. package/src/components/Inputs/DateInput/components/DatePartInput.tsx +154 -0
  119. package/src/components/Inputs/InputWrapper.tsx +90 -0
  120. package/src/components/Inputs/NumberInput.tsx +83 -0
  121. package/src/components/Inputs/PasswordInput.tsx +38 -0
  122. package/src/components/Inputs/Radio.tsx +59 -0
  123. package/src/components/Inputs/RadioGroup.tsx +48 -0
  124. package/src/components/Inputs/RadioLarge.tsx +39 -0
  125. package/src/components/Inputs/SearchInput.tsx +40 -0
  126. package/src/components/Inputs/Select2/Select.tsx +224 -0
  127. package/src/components/Inputs/Select2/select.scss +43 -0
  128. package/src/components/Inputs/Selects/Select.tsx +17 -0
  129. package/src/components/Inputs/Selects/components/CustomSelectComponents.tsx +19 -0
  130. package/src/components/Inputs/Selects/components/SelectWrapper.tsx +126 -0
  131. package/src/components/Inputs/Selects/utils/selectStyles.ts +104 -0
  132. package/src/components/Inputs/TextAreaInput.tsx +67 -0
  133. package/src/components/Inputs/TextInput.tsx +98 -0
  134. package/src/components/Inputs/TimeInput/TimeInput.tsx +81 -0
  135. package/src/components/Loader/Loader.tsx +53 -0
  136. package/src/components/Menu/Menu.tsx +68 -0
  137. package/src/components/Menu/MenuItem.tsx +47 -0
  138. package/src/components/Menu/NewMenu.tsx +66 -0
  139. package/src/components/Menu/hooks/useMenuPosition.tsx +80 -0
  140. package/src/components/Pullover/Pullover.tsx +89 -0
  141. package/src/components/Router/Router.tsx +51 -0
  142. package/src/components/Sidebar/AddButton.tsx +22 -0
  143. package/src/components/Sidebar/Sidebar.tsx +81 -0
  144. package/src/components/Sidebar/SidebarItem.tsx +84 -0
  145. package/src/components/Sidebar/types/ISidebar.ts +28 -0
  146. package/src/components/Table/Components/Columns/ColumnsList.tsx +61 -0
  147. package/src/components/Table/Components/Columns/SetColumnsList.tsx +113 -0
  148. package/src/components/Table/Components/Edit/ItemActionsMenu.tsx +84 -0
  149. package/src/components/Table/Components/Edit/ItemEditOptionsButtons.tsx +31 -0
  150. package/src/components/Table/Components/Edit/TableEditRow.tsx +56 -0
  151. package/src/components/Table/Components/FilterItem.tsx +20 -0
  152. package/src/components/Table/Components/Header/TableHeader.tsx +45 -0
  153. package/src/components/Table/Components/Header/TableHeaderRow.tsx +37 -0
  154. package/src/components/Table/Components/Print/CustomTablePrint.tsx +114 -0
  155. package/src/components/Table/Components/Print/TablePrint.tsx +207 -0
  156. package/src/components/Table/Components/SetSortList.tsx +30 -0
  157. package/src/components/Table/Components/SetTableFilter.tsx +90 -0
  158. package/src/components/Table/Components/TableFooter.tsx +135 -0
  159. package/src/components/Table/Components/TableOptions.tsx +226 -0
  160. package/src/components/Table/Components/Templates/TemplateCreate.tsx +80 -0
  161. package/src/components/Table/Components/Templates/TemplateCreateDefault.tsx +45 -0
  162. package/src/components/Table/Components/Templates/TemplateList.tsx +167 -0
  163. package/src/components/Table/Components/Templates/repo/TemplateRepo.ts +53 -0
  164. package/src/components/Table/Table.tsx +527 -0
  165. package/src/components/Table/hooks/useDefaultTemplate.ts +20 -0
  166. package/src/components/Table/hooks/useTableKeyboard.ts +138 -0
  167. package/src/components/Table/hooks/useTableSelect.ts +11 -0
  168. package/src/components/Tabs/Tabs.tsx +66 -0
  169. package/src/components/Tooltip/Tooltip.tsx +133 -0
  170. package/src/components/Tree/Tree.tsx +22 -0
  171. package/src/components/Tree/TreeItem.tsx +56 -0
  172. package/src/components/Wrappers/AppLayout.tsx +17 -0
  173. package/src/components/Wrappers/ConditionalWrapper.tsx +10 -0
  174. package/src/components/Wrappers/FormWrapper.tsx +81 -0
  175. package/src/components/Wrappers/PageLayout.tsx +152 -0
  176. package/src/hooks/useBackgroundClose.ts +18 -0
  177. package/src/hooks/useIsMenuOpen.ts +11 -0
  178. package/src/hooks/useOnEsc.ts +14 -0
  179. package/src/hooks/useZendesk.ts +21 -0
  180. package/src/index.ts +324 -0
  181. package/src/pages/NoAccessPage.tsx +27 -0
  182. package/src/pages/NotFoundPage.tsx +26 -0
  183. package/src/styles/App.scss +43 -0
  184. package/src/styles/common/_animations.scss +64 -0
  185. package/src/styles/common/_typography.scss +88 -0
  186. package/src/styles/common/helpers/_base.scss +55 -0
  187. package/src/styles/common/helpers/_color.scss +7 -0
  188. package/src/styles/common/helpers/_display.scss +85 -0
  189. package/src/styles/common/helpers/_size.scss +25 -0
  190. package/src/styles/common/maps/_align.scss +21 -0
  191. package/src/styles/common/maps/_info-types.scss +1 -0
  192. package/src/styles/common/maps/_spacing.scss +78 -0
  193. package/src/styles/common/maps/_text.scss +14 -0
  194. package/src/styles/components/_accordions.scss +46 -0
  195. package/src/styles/components/_alert.scss +23 -0
  196. package/src/styles/components/_badge.scss +76 -0
  197. package/src/styles/components/_button.scss +138 -0
  198. package/src/styles/components/_card.scss +24 -0
  199. package/src/styles/components/_dialog.scss +111 -0
  200. package/src/styles/components/_form.scss +8 -0
  201. package/src/styles/components/_header.scss +109 -0
  202. package/src/styles/components/_input.scss +158 -0
  203. package/src/styles/components/_inputCheckbox.scss +105 -0
  204. package/src/styles/components/_inputDateTime.scss +161 -0
  205. package/src/styles/components/_inputRadio.scss +83 -0
  206. package/src/styles/components/_inputSelect.scss +6 -0
  207. package/src/styles/components/_loader.scss +44 -0
  208. package/src/styles/components/_menu-v2.scss +67 -0
  209. package/src/styles/components/_menu.scss +53 -0
  210. package/src/styles/components/_page.scss +62 -0
  211. package/src/styles/components/_portal.scss +8 -0
  212. package/src/styles/components/_print.scss +87 -0
  213. package/src/styles/components/_pullover.scss +43 -0
  214. package/src/styles/components/_scrollbar.scss +18 -0
  215. package/src/styles/components/_sidebar.scss +206 -0
  216. package/src/styles/components/_smallComponents.scss +23 -0
  217. package/src/styles/components/_table.scss +270 -0
  218. package/src/styles/components/_tabs.scss +33 -0
  219. package/src/styles/components/_tooltip.scss +48 -0
  220. package/src/styles/components/_tree.scss +21 -0
  221. package/src/styles/components/_widget.scss +90 -0
  222. package/src/styles/pages/_fullScreenPage.scss +64 -0
  223. package/src/styles/variables/_bp.scss +5 -0
  224. package/src/styles/variables/_variables.scss +130 -0
  225. package/src/types/Base/custom.d.ts +9 -0
  226. package/src/types/IBasic.ts +31 -0
  227. package/src/types/IError.ts +5 -0
  228. package/src/types/IHeader.ts +24 -0
  229. package/src/types/IInfo.ts +1 -0
  230. package/src/types/IKeyboard.ts +37 -0
  231. package/src/types/IMenu.ts +18 -0
  232. package/src/types/IRouter.ts +6 -0
  233. package/src/types/ISelect.ts +52 -0
  234. package/src/types/ITab.ts +10 -0
  235. package/src/types/ITable.ts +249 -0
  236. package/src/types/ITree.ts +6 -0
  237. package/src/utils/DateUtils.ts +32 -0
  238. package/src/utils/InputPatternValidation.ts +12 -0
  239. package/src/utils/LocalStorageHelper.ts +24 -0
  240. package/src/utils/NumberUtils.ts +21 -0
  241. package/src/utils/ObjectUtils.ts +85 -0
  242. package/src/utils/RootDir.ts +1 -0
  243. package/src/utils/StringUtils.ts +18 -0
  244. package/src/utils/TableUtils.ts +130 -0
  245. package/src/utils/Toasts.ts +6 -0
  246. package/src/utils/UrlUtils.ts +4 -0
  247. package/src/utils/fileUtils.ts +176 -0
  248. package/src/utils/i18n/i18nIUICyrilic.ts +90 -0
  249. package/src/utils/i18n/i18nIUILatin.ts +90 -0
  250. package/src/utils/i18n/i18nIUIMe.ts +88 -0
  251. package/src/utils/icons.ts +13 -0
  252. package/tsconfig.icons.json +5 -0
  253. package/tsconfig.json +19 -0
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "calendar-plus";
5
+ const width = 448;
6
+ const height = 512;
7
+ const unicode = "f271";
8
+ const svgPathData =
9
+ "M320 336C320 344.8 312.8 352 304 352H240V416C240 424.8 232.8 432 224 432C215.2 432 208 424.8 208 416V352H144C135.2 352 128 344.8 128 336C128 327.2 135.2 320 144 320H208V256C208 247.2 215.2 240 224 240C232.8 240 240 247.2 240 256V320H304C312.8 320 320 327.2 320 336zM112 0C120.8 0 128 7.164 128 16V64H320V16C320 7.164 327.2 0 336 0C344.8 0 352 7.164 352 16V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H96V16C96 7.164 103.2 0 112 0zM416 192H32V448C32 465.7 46.33 480 64 480H384C401.7 480 416 465.7 416 448V192zM384 96H64C46.33 96 32 110.3 32 128V160H416V128C416 110.3 401.7 96 384 96z";
10
+
11
+ export const faCalendarPlus: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fal';
4
+ const iconName = 'check';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f00c';
8
+ const svgPathData =
9
+ 'M475.3 123.3l-272 272C200.2 398.4 196.1 400 192 400s-8.188-1.562-11.31-4.688l-144-144c-6.25-6.25-6.25-16.38 0-22.62s16.38-6.25 22.62 0L192 361.4l260.7-260.7c6.25-6.25 16.38-6.25 22.62 0S481.6 117.1 475.3 123.3z';
10
+
11
+ export const faCheck: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "chevron-down";
5
+ const width = 448;
6
+ const height = 512;
7
+ const unicode = "f078";
8
+ const svgPathData =
9
+ "M4.251 181.1C7.392 177.7 11.69 175.1 16 175.1c3.891 0 7.781 1.406 10.86 4.25l197.1 181.1l197.1-181.1c6.5-6 16.64-5.625 22.61 .9062c6 6.5 5.594 16.59-.8906 22.59l-208 192c-6.156 5.688-15.56 5.688-21.72 0l-208-192C-1.343 197.7-1.749 187.6 4.251 181.1z";
10
+
11
+ export const faChevronDown: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "chevron-right";
5
+ const width = 320;
6
+ const height = 512;
7
+ const unicode = "f054";
8
+ const svgPathData =
9
+ "M85.14 475.8c-3.438-3.141-5.156-7.438-5.156-11.75c0-3.891 1.406-7.781 4.25-10.86l181.1-197.1L84.23 58.86c-6-6.5-5.625-16.64 .9062-22.61c6.5-6 16.59-5.594 22.59 .8906l192 208c5.688 6.156 5.688 15.56 0 21.72l-192 208C101.7 481.3 91.64 481.8 85.14 475.8z";
10
+
11
+ export const faChevronRight: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "circle-info";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f05a";
8
+ const svgPathData =
9
+ "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 480c-123.5 0-224-100.5-224-224s100.5-224 224-224s224 100.5 224 224S379.5 480 256 480zM256 184c13.25 0 24-10.74 24-24c0-13.25-10.75-24-24-24S232 146.7 232 160C232 173.3 242.7 184 256 184zM304 352h-32V240C272 231.2 264.8 224 256 224H224C215.2 224 208 231.2 208 240S215.2 256 224 256h16v96h-32C199.2 352 192 359.2 192 368C192 376.8 199.2 384 208 384h96c8.836 0 16-7.164 16-16C320 359.2 312.8 352 304 352z";
10
+
11
+ export const faCircleInfo: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "circle-xmark";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f057";
8
+ const svgPathData =
9
+ "M331.3 180.7c-6.25-6.25-16.38-6.25-22.62 0L256 233.4L203.3 180.7c-6.25-6.25-16.38-6.25-22.62 0s-6.25 16.38 0 22.62L233.4 256L180.7 308.7c-6.25 6.25-6.25 16.38 0 22.62c6.246 6.246 16.37 6.254 22.62 0L256 278.6l52.69 52.69c6.246 6.246 16.37 6.254 22.62 0c6.25-6.25 6.25-16.38 0-22.62L278.6 256l52.69-52.69C337.6 197.1 337.6 186.9 331.3 180.7zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256S512 397.4 512 256S397.4 0 256 0zM256 480c-123.5 0-224-100.5-224-224s100.5-224 224-224s224 100.5 224 224S379.5 480 256 480z";
10
+
11
+ export const faCircleXmark: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fal';
4
+ const iconName = 'clock-rotate-left';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f1da';
8
+ const svgPathData =
9
+ 'M256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C172.2 512 97.87 471.8 51.19 409.6C45.88 402.5 47.31 392.5 54.37 387.2C61.44 381.9 71.47 383.3 76.78 390.4C117.7 444.8 182.7 480 256 480C379.7 480 480 379.7 480 256C480 132.3 379.7 32 256 32C166.7 32 89.51 84.3 53.55 160H144C152.8 160 160 167.2 160 176C160 184.8 152.8 192 144 192H16C7.164 192 0 184.8 0 176V48C0 39.16 7.164 32 16 32C24.84 32 32 39.16 32 48V131.1C75.66 53.29 159.6 0 256 0zM256 128C264.8 128 272 135.2 272 144V249.4L347.3 324.7C353.6 330.9 353.6 341.1 347.3 347.3C341.1 353.6 330.9 353.6 324.7 347.3L244.7 267.3C241.7 264.3 239.1 260.2 239.1 256V144C239.1 135.2 247.2 128 255.1 128H256z';
10
+
11
+ export const faClockRotateLeft: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fal';
4
+ const iconName = 'ellipsis-vertical';
5
+ const width = 128;
6
+ const height = 512;
7
+ const unicode = 'f142';
8
+ const svgPathData =
9
+ 'M64 384C81.67 384 96 398.3 96 416C96 433.7 81.67 448 64 448C46.33 448 32 433.7 32 416C32 398.3 46.33 384 64 384zM64 224C81.67 224 96 238.3 96 256C96 273.7 81.67 288 64 288C46.33 288 32 273.7 32 256C32 238.3 46.33 224 64 224zM64 128C46.33 128 32 113.7 32 96C32 78.33 46.33 64 64 64C81.67 64 96 78.33 96 96C96 113.7 81.67 128 64 128z';
10
+
11
+ export const faEllipsisVertical: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "eye";
5
+ const width = 576;
6
+ const height = 512;
7
+ const unicode = "f06e";
8
+ const svgPathData =
9
+ "M288 128C217.3 128 160 185.3 160 256s57.33 128 128 128c70.64 0 128-57.32 128-127.9C416 185.4 358.7 128 288 128zM288 352c-52.93 0-96-43.06-96-96s43.07-96 96-96c52.94 0 96 43.02 96 96.01C384 308.9 340.1 352 288 352zM572.5 238.1C518.3 115.5 410.9 32 288 32S57.69 115.6 3.469 238.1C1.563 243.4 0 251 0 256c0 4.977 1.562 12.6 3.469 17.03C57.72 396.5 165.1 480 288 480s230.3-83.58 284.5-206.1C574.4 268.6 576 260.1 576 256C576 251 574.4 243.4 572.5 238.1zM543.2 260.2C492.3 376 394.5 448 288 448c-106.5 0-204.3-71.98-255-187.3C32.58 259.6 32.05 256.9 31.1 256.2c.0547-1.146 .5859-3.783 .7695-4.363C83.68 135.1 181.5 64 288 64c106.5 0 204.3 71.98 255 187.3c.3945 1.08 .9238 3.713 .9785 4.443C543.9 256.9 543.4 259.6 543.2 260.2z";
10
+
11
+ export const faEye: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "eye-slash";
5
+ const width = 640;
6
+ const height = 512;
7
+ const unicode = "f070";
8
+ const svgPathData =
9
+ "M272.9 137.2l30.91 24.41c5.301-.9102 10.67-1.638 16.23-1.638c50.78 0 92.05 39.74 95.36 89.74l30.82 24.33C447 268.1 448 262.2 448 256.1C448 185.4 390.7 128 320 128C303.3 128 287.5 131.4 272.9 137.2zM320 448c-106.5 0-204.3-71.98-255-187.3C64.58 259.6 64.05 256.9 63.1 256.2c.0547-1.146 .5859-3.783 .7695-4.363c12.84-29.22 28.7-55.61 46.89-78.8l-25.05-19.78c-20.06 25.52-37.34 54.31-51.13 85.71C33.56 243.4 31.1 251 31.1 256c0 4.977 1.562 12.6 3.469 17.03c54.25 123.4 161.6 206.1 284.5 206.1c48.13 0 93.81-12.96 134.9-35.96l-27.74-21.9C393.6 438.7 357.4 448 320 448zM320 64c106.5 0 204.3 71.98 255 187.3c.3945 1.08 .9238 3.713 .9785 4.443c-.0547 1.145-.5859 3.783-.7695 4.361c-12.84 29.22-28.69 55.61-46.88 78.79l25.05 19.78c20.06-25.52 37.33-54.3 51.13-85.7c1.906-4.43 3.469-12.07 3.469-17.03c0-4.977-1.562-12.6-3.469-17.03c-54.25-123.4-161.6-206.1-284.5-206.1c-48.13 0-93.8 12.96-134.9 35.95l27.74 21.9C246.4 73.33 282.6 64 320 64zM320 384c16.68 0 32.56-3.42 47.17-9.229l-30.92-24.41c-5.307 .9121-10.68 1.644-16.25 1.644c-50.8 0-92.09-39.78-95.37-89.76L193.8 237.9C192.1 243.9 192 249.8 192 256C192 326.7 249.3 384 320 384zM633.9 483.4L25.9 3.42C18.1-2.033 8.936-.8301 3.436 6.061c-5.469 6.938-4.281 17 2.656 22.49l608 480C617 510.9 620.5 512 624 512c4.719 0 9.406-2.094 12.56-6.078C642 498.1 640.8 488.9 633.9 483.4z";
10
+
11
+ export const faEyeSlash: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "filter";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f0b0";
8
+ const svgPathData =
9
+ "M479.3 32H32.7C5.213 32-9.965 63.28 7.375 84.19L192 306.8V400c0 7.828 3.812 15.17 10.25 19.66l80 55.98C286.5 478.6 291.3 480 295.9 480C308.3 480 320 470.2 320 455.1V306.8l184.6-222.6C521.1 63.28 506.8 32 479.3 32zM295.4 286.4L288 295.3v145.3l-64-44.79V295.3L32.7 64h446.6l.6934-.2422L295.4 286.4z";
10
+
11
+ export const faFilter: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fal';
4
+ const iconName = 'gear';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f013';
8
+ const svgPathData =
9
+ 'M255.1 512c-56.05 0-75.99-11.33-75.99-35.94V436.5c-15.17-6.375-29.35-14.53-42.36-24.41l-34.3 19.78c-4.621 2.703-9.976 4.013-15.36 4.013c-36.71 0-76.25-92.87-76.25-108.6c0-10.85 5.806-21.34 15.71-27.07l34.17-19.72C60.52 272.1 59.99 264 59.99 255.1s.5313-16.13 1.625-24.47L27.42 211.8C17.53 206.1 11.73 195.6 11.73 184.7c0-12.58 37.98-108.7 76.2-108.7c5.417 0 10.82 1.338 15.52 4.111L137.6 99.88C150.6 90.01 164.8 81.85 179.1 75.47V35.91C179.1 4.335 215.7 0 256 0c39.71 0 75.1 4.083 75.1 35.91v39.56c15.17 6.375 29.35 14.53 42.36 24.41l34.3-19.78c4.621-2.703 9.981-4.013 15.37-4.013c36.47 0 76.24 92.55 76.24 108.6c0 10.85-5.806 21.34-15.71 27.07l-34.17 19.72c1.094 8.344 1.625 16.44 1.625 24.47s-.5313 16.13-1.625 24.47l34.19 19.75c9.895 5.703 15.7 16.19 15.7 27.05c0 12.59-37.98 108.7-76.21 108.7c-5.42 0-10.83-1.338-15.51-4.111l-34.19-19.72c-13.02 9.876-27.19 18.03-42.36 24.41v39.56C332 500.6 312.1 512 255.1 512zM140.9 373.2c35.92 30.82 52.34 34.36 71.05 41v61.85c14.11 2.344 28.82 3.727 43.76 3.727c14.95 0 30.13-1.383 45.19-4.571l-.9532-61c16.07-5.702 35.18-10.22 71.05-41l53.61 30.97c18.78-22.06 33.77-47.97 43.39-76.57l-52.94-30.56c2.745-14.99 4.859-25.43 4.859-39.07c0-10.95-1.364-23.97-4.859-43.06l53.46-30.85c-9.829-27.75-24.92-53.97-45.1-76.72l-52.43 31.41c-35.92-30.82-52.34-34.36-71.05-41V35.91c-14.11-2.344-28.82-3.727-43.76-3.727c-14.95 0-30.13 1.383-45.19 4.571l.9532 61C195.9 103.5 176.8 107.1 140.9 138.8L87.33 107.8c-18.99 22.31-34.08 48.53-43.69 77.47l53.24 29.66C94.14 229.9 92.02 240.4 92.02 253.1c0 10.95 1.364 23.97 4.859 43.06l-53.46 30.85c9.829 27.75 24.92 53.97 45.1 76.72L140.9 373.2zM256 351.1c-52.94 0-96-43.06-96-96S203.1 159.1 256 159.1s96 43.06 96 96S308.9 351.1 256 351.1zM256 191.1c-35.3 0-64 28.72-64 64S220.7 319.1 256 319.1s64-28.72 64-64S291.3 191.1 256 191.1z';
10
+
11
+ export const faGear: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "house";
5
+ const width = 576;
6
+ const height = 512;
7
+ const unicode = "f015";
8
+ const svgPathData =
9
+ "M570.6 244C577.2 249.8 577.8 259.1 571.1 266.6C566.2 273.2 556 273.8 549.4 267.1L512 234.1V432C512 476.2 476.2 512 432 512H144C99.82 512 64 476.2 64 432V234.1L26.59 267.1C19.96 273.8 9.849 273.2 4.003 266.6C-1.844 259.1-1.212 249.8 5.414 244L277.4 4.002C283.5-1.334 292.5-1.334 298.6 4.002L570.6 244zM144 480H208V320C208 302.3 222.3 288 240 288H336C353.7 288 368 302.3 368 320V480H432C458.5 480 480 458.5 480 432V206.7L288 37.34L96 206.7V432C96 458.5 117.5 480 144 480zM240 480H336V320H240V480z";
10
+
11
+ export const faHouse: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "id-badge";
5
+ const width = 384;
6
+ const height = 512;
7
+ const unicode = "f2c1";
8
+ const svgPathData =
9
+ "M320 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h256c35.35 0 64-28.65 64-64V64C384 28.65 355.3 0 320 0zM352 448c0 17.64-14.36 32-32 32H64c-17.64 0-32-14.36-32-32V64c0-17.64 14.36-32 32-32h256c17.64 0 32 14.36 32 32V448zM192 288c35.35 0 64-28.65 64-64s-28.65-64-64-64S128 188.7 128 224S156.7 288 192 288zM192 192c17.64 0 32 14.36 32 32s-14.36 32-32 32S160 241.6 160 224S174.4 192 192 192zM224 320H160c-44.18 0-80 35.82-80 80C80 408.8 87.16 416 96 416c8.838 0 16-7.164 16-16C112 373.5 133.5 352 160 352h64c26.51 0 48 21.49 48 48c0 8.836 7.164 16 16 16c8.838 0 16-7.164 16-16C304 355.8 268.2 320 224 320zM144 96h96C248.8 96 256 88.84 256 80S248.8 64 240 64h-96C135.2 64 128 71.16 128 80S135.2 96 144 96z";
10
+
11
+ export const faIdBadge: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "line-columns";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f870";
8
+ const svgPathData =
9
+ "M208 48C216.8 48 224 55.16 224 64C224 72.84 216.8 80 208 80H16C7.164 80 0 72.84 0 64C0 55.16 7.164 48 16 48H208zM208 176C216.8 176 224 183.2 224 192C224 200.8 216.8 208 208 208H16C7.164 208 0 200.8 0 192C0 183.2 7.164 176 16 176H208zM0 320C0 311.2 7.164 304 16 304H208C216.8 304 224 311.2 224 320C224 328.8 216.8 336 208 336H16C7.164 336 0 328.8 0 320zM208 432C216.8 432 224 439.2 224 448C224 456.8 216.8 464 208 464H16C7.164 464 0 456.8 0 448C0 439.2 7.164 432 16 432H208zM288 192C288 183.2 295.2 176 304 176H496C504.8 176 512 183.2 512 192C512 200.8 504.8 208 496 208H304C295.2 208 288 200.8 288 192zM496 48C504.8 48 512 55.16 512 64C512 72.84 504.8 80 496 80H304C295.2 80 288 72.84 288 64C288 55.16 295.2 48 304 48H496zM288 320C288 311.2 295.2 304 304 304H496C504.8 304 512 311.2 512 320C512 328.8 504.8 336 496 336H304C295.2 336 288 328.8 288 320zM496 432C504.8 432 512 439.2 512 448C512 456.8 504.8 464 496 464H304C295.2 464 288 456.8 288 448C288 439.2 295.2 432 304 432H496z";
10
+
11
+ export const faLineColumns: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fal';
4
+ const iconName = 'link';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f0c1';
8
+ const svgPathData =
9
+ 'M591.5 256c50-50 50-131 0-181s-131-50-181 0L387.9 97.6c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l22.6-22.6c37.5-37.5 98.3-37.5 135.8 0s37.5 98.3 0 135.8L444.3 357.9c-37.4 37.4-98.1 37.4-135.6 0c-35.6-35.6-37.6-92.6-4.7-130.6l5.3-6.1c5.8-6.7 5.1-16.8-1.6-22.6s-16.8-5.1-22.6 1.6l-5.3 6.1c-43.9 50.7-41.2 126.7 6.2 174.1c49.9 49.9 130.9 49.9 180.8 0L591.5 256zM48.5 256c-50 50-50 131 0 181s131 50 181 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-22.6 22.6c-37.5 37.5-98.3 37.5-135.8 0s-37.5-98.3 0-135.8L195.7 154.1c37.4-37.4 98.1-37.4 135.6 0c35.6 35.6 37.6 92.6 4.7 130.6l-5.3 6.1c-5.8 6.7-5.1 16.8 1.6 22.6s16.8 5.1 22.6-1.6l5.3-6.1c43.9-50.7 41.2-126.7-6.2-174.1C303.9 81.5 223 81.5 173 131.4L48.5 256z';
10
+
11
+ export const faLink: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "magnifying-glass";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f002";
8
+ const svgPathData =
9
+ "M507.3 484.7l-141.5-141.5C397 306.8 415.1 259.7 415.1 208c0-114.9-93.13-208-208-208S-.0002 93.13-.0002 208S93.12 416 207.1 416c51.68 0 98.85-18.96 135.2-50.15l141.5 141.5C487.8 510.4 491.9 512 496 512s8.188-1.562 11.31-4.688C513.6 501.1 513.6 490.9 507.3 484.7zM208 384C110.1 384 32 305 32 208S110.1 32 208 32S384 110.1 384 208S305 384 208 384z";
10
+
11
+ export const faMagnifyingGlass: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "pen-field";
5
+ const width = 640;
6
+ const height = 512;
7
+ const unicode = "e211";
8
+ const svgPathData =
9
+ "M560 256C551.2 256 544 263.2 544 272V448c0 17.67-14.33 32-32 32H64c-17.67 0-32-14.33-32-32V192c0-17.67 14.33-32 32-32h240C312.8 160 320 152.8 320 144S312.8 128 304 128H63.1C28.65 128 0 156.7 0 192v256c0 35.35 28.65 64 63.1 64h447.1c35.35 0 63.1-28.65 63.1-63.1L576 272C576 263.2 568.8 256 560 256zM640 76.14c0-12.28-4.686-24.57-14.06-33.94l-28.13-28.14C588.4 4.688 576.2 0 563.9 0s-24.57 4.688-33.94 14.06l-207.5 207.5C313.5 230.5 307.4 241.9 304.9 254.3l-16.66 83.35c-.162 .8104-.2393 1.612-.2393 2.396C288 346.6 293.4 352 299.1 352c.7852 0 1.586-.0781 2.398-.2402l83.35-16.67c12.39-2.479 23.77-8.566 32.7-17.5l207.5-207.5C635.3 100.7 640 88.42 640 76.14zM395.8 294.1c-4.48 4.48-10.13 7.506-16.35 8.748L325.5 314.5l10.78-53.93c1.244-6.219 4.27-11.88 8.754-16.36l146.3-146.3l50.76 50.76L395.8 294.1zM603.3 87.45l-38.62 38.62l-50.76-50.76l38.62-38.62C556.6 32.61 561.4 32 563.9 32s7.236 .6094 11.31 4.686l28.13 28.14C607.4 68.9 608 73.66 608 76.14C608 78.61 607.4 83.38 603.3 87.45zM104 320c0 13.25 10.75 24 24 24S152 333.3 152 320c0-13.26-10.75-24-24-24S104 306.7 104 320zM200 320c0 13.25 10.75 24 24 24S248 333.3 248 320c0-13.26-10.75-24-24-24S200 306.7 200 320z";
10
+
11
+ export const faPenField: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "print";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f02f";
8
+ const svgPathData =
9
+ "M416 320H96c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-128C448 334.3 433.7 320 416 320zM416 480H96v-128h320V480zM448 192V70.63C448 62.14 444.6 54 438.6 48l-38.63-38.63C393.1 3.37 385.9 0 377.4 0H128C92.65 0 64 28.65 64 64v128C28.7 192 0 220.7 0 256v112C0 376.8 7.156 384 16 384S32 376.8 32 368V256c0-17.67 14.33-32 32-32h384c17.67 0 32 14.33 32 32v112c0 8.844 7.156 16 16 16s16-7.156 16-16V256C512 220.7 483.3 192 448 192zM416 192H96V64c0-17.67 14.33-32 32-32h249.4L416 70.63V192zM432 248c-13.25 0-24 10.74-24 24c0 13.25 10.75 24 24 24s24-10.75 24-24C456 258.7 445.3 248 432 248z";
10
+
11
+ export const faPrint: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "question";
5
+ const width = 320;
6
+ const height = 512;
7
+ const unicode = "3f";
8
+ const svgPathData =
9
+ "M213.1 32H106.7C47.84 32 0 79.84 0 138.7V160c0 8.844 7.156 16 16 16S32 168.9 32 160V138.7C32 97.48 65.5 64 106.7 64h106.5C254.4 64 288 97.58 288 138.9c0 27-14.62 52-38.16 65.25L152.5 258.9C137.4 267.4 128 283.4 128 300.7V336c0 8.844 7.156 16.01 16 16.01S160 344.8 160 336V300.7c0-5.766 3.125-11.11 8.156-13.95l97.38-54.78C299.1 213.1 320 177.4 320 138.9C320 79.94 272.1 32 213.1 32zM144 400c-17.67 0-32 14.32-32 31.99s14.33 32 32 32s32-14.33 32-32S161.7 400 144 400z";
10
+
11
+ export const faQuestion: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "rotate-right";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f2f9";
8
+ const svgPathData =
9
+ "M32.05 256.1c0 123.5 100.4 223.9 223.9 223.9c104.4 0 180-76.8 180-95.94c0-9.377-7.705-16.03-15.98-16.03C399.5 367.1 369.3 448 256 448c-105.9 0-192-86.13-192-192s86.13-192 192-192c75.11 0 123.1 44.4 124.2 45.15l-55.54 55.54c-3.055 3.055-4.681 7.16-4.681 11.33C320 184.9 327.2 192 336 192h128C472.8 192 480 184.8 480 176v-128c0-8.606-6.901-15.97-15.97-15.97c-4.171 0-8.291 1.598-11.35 4.653L402.1 87.32c-8.646-13.15-70.2-55.25-146.1-55.25C132.4 32.07 32.05 132.6 32.05 256.1zM374.6 160L448 86.63V160H374.6z";
10
+
11
+ export const faRotateRight: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "trash-can";
5
+ const width = 448;
6
+ const height = 512;
7
+ const unicode = "f2ed";
8
+ const svgPathData =
9
+ "M432 64h-96l-33.63-44.75C293.4 7.125 279.1 0 264 0h-80C168.9 0 154.6 7.125 145.6 19.25L112 64h-96C7.201 64 0 71.2 0 80c0 8.799 7.201 16 16 16h416c8.801 0 16-7.201 16-16C448 71.2 440.8 64 432 64zM152 64l19.25-25.62C174.3 34.38 179 32 184 32h80c5 0 9.75 2.375 12.75 6.375L296 64H152zM400 128C391.2 128 384 135.2 384 144v288c0 26.47-21.53 48-48 48h-224C85.53 480 64 458.5 64 432v-288C64 135.2 56.84 128 48 128S32 135.2 32 144v288C32 476.1 67.89 512 112 512h224c44.11 0 80-35.89 80-80v-288C416 135.2 408.8 128 400 128zM144 416V192c0-8.844-7.156-16-16-16S112 183.2 112 192v224c0 8.844 7.156 16 16 16S144 424.8 144 416zM240 416V192c0-8.844-7.156-16-16-16S208 183.2 208 192v224c0 8.844 7.156 16 16 16S240 424.8 240 416zM336 416V192c0-8.844-7.156-16-16-16S304 183.2 304 192v224c0 8.844 7.156 16 16 16S336 424.8 336 416z";
10
+
11
+ export const faTrashCan: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fal";
4
+ const iconName = "triangle-exclamation";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f071";
8
+ const svgPathData =
9
+ "M256 360c-13.25 0-23.1 10.74-23.1 24c0 13.25 10.75 24 23.1 24c13.25 0 23.1-10.75 23.1-24C280 370.7 269.3 360 256 360zM256 320c8.843 0 15.1-7.156 15.1-16V160c0-8.844-7.155-16-15.1-16S240 151.2 240 160v144C240 312.8 247.2 320 256 320zM504.3 397.3L304.5 59.38C294.4 42.27 276.2 32.03 256 32C235.8 32 217.7 42.22 207.5 59.36l-199.9 338c-10.05 16.97-10.2 37.34-.4218 54.5C17.29 469.5 35.55 480 56.1 480h399.9c20.51 0 38.75-10.53 48.81-28.17C514.6 434.7 514.4 414.3 504.3 397.3zM476.1 435.1C472.7 443.5 464.8 448 455.1 448H56.1c-8.906 0-16.78-4.484-21.08-12c-4.078-7.156-4.015-15.3 .1562-22.36L235.1 75.66C239.4 68.36 247.2 64 256 64c0 0-.0156 0 0 0c8.765 .0156 16.56 4.359 20.86 11.64l199.9 338C480.1 420.7 481.1 428.8 476.1 435.1z";
10
+
11
+ export const faTriangleExclamation: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fal';
4
+ const iconName = 'xmark';
5
+ const width = 320;
6
+ const height = 512;
7
+ const unicode = 'f00d';
8
+ const svgPathData =
9
+ 'M315.3 411.3c-6.253 6.253-16.37 6.253-22.63 0L160 278.6l-132.7 132.7c-6.253 6.253-16.37 6.253-22.63 0c-6.253-6.253-6.253-16.37 0-22.63L137.4 256L4.69 123.3c-6.253-6.253-6.253-16.37 0-22.63c6.253-6.253 16.37-6.253 22.63 0L160 233.4l132.7-132.7c6.253-6.253 16.37-6.253 22.63 0c6.253 6.253 6.253 16.37 0 22.63L182.6 256l132.7 132.7C321.6 394.9 321.6 405.1 315.3 411.3z';
10
+
11
+ export const faXmark: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "far";
4
+ const iconName = "arrow-left";
5
+ const width = 448;
6
+ const height = 512;
7
+ const unicode = "f060";
8
+ const svgPathData =
9
+ "M447.1 256c0 13.25-10.76 24.01-24.01 24.01H83.9l132.7 126.6c9.625 9.156 9.969 24.41 .8125 33.94c-9.156 9.594-24.34 9.938-33.94 .8125l-176-168C2.695 268.9 .0078 262.6 .0078 256S2.695 243.2 7.445 238.6l176-168C193 61.51 208.2 61.85 217.4 71.45c9.156 9.5 8.812 24.75-.8125 33.94l-132.7 126.6h340.1C437.2 232 447.1 242.8 447.1 256z";
10
+
11
+ export const faArrowLeft: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'far';
4
+ const iconName = 'arrow-right-arrow-left';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f0ec';
8
+ const svgPathData =
9
+ 'M488 344H79.24l74.29-79.63C162.6 254.7 162.1 239.5 152.4 230.5C142.7 221.4 127.5 221.9 118.5 231.6l-112 120c-8.625 9.219-8.625 23.53 0 32.75l112 120C123.2 509.4 129.6 512 136 512c5.875 0 11.75-2.125 16.38-6.469c9.688-9.031 10.22-24.22 1.156-33.91L79.24 392H488c13.25 0 24-10.75 24-24S501.3 344 488 344zM24 168h408.8l-74.29 79.63c-9.062 9.688-8.531 24.88 1.156 33.91c9.656 9.094 24.88 8.562 33.91-1.156l112-120c8.625-9.219 8.625-23.53 0-32.75l-112-120C388.8 2.562 382.4 0 376 0c-5.875 0-11.75 2.125-16.38 6.469c-9.688 9.031-10.22 24.22-1.156 33.91L432.8 120H24C10.75 120 0 130.8 0 144S10.75 168 24 168z';
10
+
11
+ export const faArrowRightArrowLeft: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'far';
4
+ const iconName = 'circle-check';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f058';
8
+ const svgPathData =
9
+ 'M335 175L224 286.1L176.1 239c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94l64 64C211.7 341.7 217.8 344 224 344s12.28-2.344 16.97-7.031l128-128c9.375-9.375 9.375-24.56 0-33.94S344.4 165.7 335 175zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464z';
10
+
11
+ export const faCircleCheck: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'far';
4
+ const iconName = 'circle-exclamation';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f06a';
8
+ const svgPathData =
9
+ 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464zM256 304c13.25 0 24-10.75 24-24v-128C280 138.8 269.3 128 256 128S232 138.8 232 152v128C232 293.3 242.8 304 256 304zM256 337.1c-17.36 0-31.44 14.08-31.44 31.44C224.6 385.9 238.6 400 256 400s31.44-14.08 31.44-31.44C287.4 351.2 273.4 337.1 256 337.1z';
10
+
11
+ export const faCircleExclamation: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'far';
4
+ const iconName = 'circle-info';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f05a';
8
+ const svgPathData =
9
+ 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464zM296 336h-16V248C280 234.8 269.3 224 256 224H224C210.8 224 200 234.8 200 248S210.8 272 224 272h8v64h-16C202.8 336 192 346.8 192 360S202.8 384 216 384h80c13.25 0 24-10.75 24-24S309.3 336 296 336zM256 192c17.67 0 32-14.33 32-32c0-17.67-14.33-32-32-32S224 142.3 224 160C224 177.7 238.3 192 256 192z';
10
+
11
+ export const faCircleInfo: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'far';
4
+ const iconName = 'file-arrow-down';
5
+ const width = 384;
6
+ const height = 512;
7
+ const unicode = 'f56d';
8
+ const svgPathData =
9
+ 'M216 342.1V240c0-13.25-10.75-24-24-24S168 226.8 168 240v102.1L128.1 303C124.3 298.3 118.2 296 112 296S99.72 298.3 95.03 303c-9.375 9.375-9.375 24.56 0 33.94l80 80c9.375 9.375 24.56 9.375 33.94 0l80-80c9.375-9.375 9.375-24.56 0-33.94s-24.56-9.375-33.94 0L216 342.1zM365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H64C28.65 0 0 28.65 0 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448z';
10
+
11
+ export const faFileArrowDown: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'far';
4
+ const iconName = 'filter-circle-xmark';
5
+ const width = 576;
6
+ const height = 512;
7
+ const unicode = 'e17b';
8
+ const svgPathData =
9
+ 'M432 224C352.5 224 288 288.5 288 368s64.47 144 144 144s144-64.47 144-144S511.5 224 432 224zM488.5 401.9c6.242 6.242 6.252 16.37 .0098 22.62c-6.24 6.242-16.37 6.231-22.62-.0113l-33.91-33.91l-33.91 33.91c-6.242 6.242-16.37 6.253-22.62 .0106s-6.232-16.37 .0098-22.62l33.91-33.91l-33.91-33.91c-6.242-6.242-6.251-16.37-.009-22.62s16.37-6.232 22.62 .0106l33.91 33.91l33.91-33.91c6.242-6.242 16.37-6.254 22.61-.0113s6.233 16.37-.009 22.62l-33.91 33.91L488.5 401.9zM223.1 340.7V272.2c0-7.369-2.539-14.51-7.191-20.22L50.77 48.04h410.4l-85.57 105.1c-7.77 9.545-7.061 23.42 1.643 32.13c10.06 10.06 26.62 9.219 35.6-1.812l88.61-108.8c11.26-13.46 13.7-31.89 6.225-47.92C500 10.23 483.8 0 465.3 0H46.65C28.21 0 11.97 10.23 4.283 26.71C-3.195 42.73-.7578 61.16 10.64 74.79l165.4 203.1v67.71c0 12.55 6.178 24.3 16.52 31.45l24.81 19.15C233.1 408.4 256 397.2 256 377.2c0-7.439-3.449-14.46-9.34-19L223.1 340.7z';
10
+
11
+ export const faFilterCircleXmark: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'far';
4
+ const iconName = 'triangle-exclamation';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f071';
8
+ const svgPathData =
9
+ 'M506.3 417l-213.3-364C284.8 39 270.4 32 256 32C241.6 32 227.2 39 218.1 53l-213.2 364C-10.59 444.9 9.851 480 42.74 480h426.6C502.1 480 522.6 445 506.3 417zM52.58 432L255.1 84.8L459.4 432H52.58zM256 337.1c-17.36 0-31.44 14.08-31.44 31.44c0 17.36 14.11 31.44 31.48 31.44s31.4-14.08 31.4-31.44C287.4 351.2 273.4 337.1 256 337.1zM232 184v96C232 293.3 242.8 304 256 304s24-10.75 24-24v-96C280 170.8 269.3 160 256 160S232 170.8 232 184z';
10
+
11
+ export const faTriangleExclamation: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fas';
4
+ const iconName = 'angle-left';
5
+ const width = 256;
6
+ const height = 512;
7
+ const unicode = 'f104';
8
+ const svgPathData =
9
+ 'M192 448c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L77.25 256l137.4 137.4c12.5 12.5 12.5 32.75 0 45.25C208.4 444.9 200.2 448 192 448z';
10
+
11
+ export const faAngleLeft: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fas';
4
+ const iconName = 'angle-right';
5
+ const width = 256;
6
+ const height = 512;
7
+ const unicode = 'f105';
8
+ const svgPathData =
9
+ 'M64 448c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L178.8 256L41.38 118.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25l-160 160C80.38 444.9 72.19 448 64 448z';
10
+
11
+ export const faAngleRight: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fas';
4
+ const iconName = 'arrow-down-wide-short';
5
+ const width = 576;
6
+ const height = 512;
7
+ const unicode = 'f160';
8
+ const svgPathData =
9
+ 'M416 288h-95.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H416c17.67 0 32-14.33 32-32S433.7 288 416 288zM544 32h-223.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H544c17.67 0 32-14.33 32-32S561.7 32 544 32zM352 416h-32c-17.67 0-32 14.33-32 32s14.33 32 32 32h32c17.67 0 31.1-14.33 31.1-32S369.7 416 352 416zM480 160h-159.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H480c17.67 0 32-14.33 32-32S497.7 160 480 160zM192.4 330.7L160 366.1V64.03C160 46.33 145.7 32 128 32S96 46.33 96 64.03v302L63.6 330.7c-6.312-6.883-14.94-10.38-23.61-10.38c-7.719 0-15.47 2.781-21.61 8.414c-13.03 11.95-13.9 32.22-1.969 45.27l87.1 96.09c12.12 13.26 35.06 13.26 47.19 0l87.1-96.09c11.94-13.05 11.06-33.31-1.969-45.27C224.6 316.8 204.4 317.7 192.4 330.7z';
10
+
11
+ export const faArrowDownWideShort: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'fas';
4
+ const iconName = 'caret-down';
5
+ const width = 320;
6
+ const height = 512;
7
+ const unicode = 'f0d7';
8
+ const svgPathData =
9
+ 'M310.6 246.6l-127.1 128C176.4 380.9 168.2 384 160 384s-16.38-3.125-22.63-9.375l-127.1-128C.2244 237.5-2.516 223.7 2.438 211.8S19.07 192 32 192h255.1c12.94 0 24.62 7.781 29.58 19.75S319.8 237.5 310.6 246.6z';
10
+
11
+ export const faCaretDown: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
@@ -0,0 +1,15 @@
1
+ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
2
+
3
+ const prefix = "fas";
4
+ const iconName = "check";
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = "f00c";
8
+ const svgPathData =
9
+ "M480 128c0 8.188-3.125 16.38-9.375 22.62l-256 256C208.4 412.9 200.2 416 192 416s-16.38-3.125-22.62-9.375l-128-128C35.13 272.4 32 264.2 32 256c0-18.28 14.95-32 32-32c8.188 0 16.38 3.125 22.62 9.375L192 338.8l233.4-233.4C431.6 99.13 439.8 96 448 96C465.1 96 480 109.7 480 128z";
10
+
11
+ export const faCheck: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };