cybercore-css 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (381) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +479 -0
  3. package/dist/cybercore.css +3546 -0
  4. package/dist/cybercore.css.map +1 -0
  5. package/dist/cybercore.min.css +3 -0
  6. package/dist/cybercore.min.css.map +1 -0
  7. package/package.json +214 -0
  8. package/src/cybercore.d.ts +107 -0
  9. package/src/icons/README.md +378 -0
  10. package/src/icons/defs/_template.ts +27 -0
  11. package/src/icons/defs/actions/check.ts +36 -0
  12. package/src/icons/defs/actions/copy.ts +37 -0
  13. package/src/icons/defs/actions/cut.ts +44 -0
  14. package/src/icons/defs/actions/delete.ts +42 -0
  15. package/src/icons/defs/actions/download.ts +36 -0
  16. package/src/icons/defs/actions/drag.ts +60 -0
  17. package/src/icons/defs/actions/edit.ts +36 -0
  18. package/src/icons/defs/actions/filter.ts +33 -0
  19. package/src/icons/defs/actions/index.ts +28 -0
  20. package/src/icons/defs/actions/link.ts +40 -0
  21. package/src/icons/defs/actions/minus.ts +42 -0
  22. package/src/icons/defs/actions/paste.ts +39 -0
  23. package/src/icons/defs/actions/pin.ts +36 -0
  24. package/src/icons/defs/actions/plus.ts +46 -0
  25. package/src/icons/defs/actions/redo.ts +37 -0
  26. package/src/icons/defs/actions/refresh.ts +36 -0
  27. package/src/icons/defs/actions/save.ts +36 -0
  28. package/src/icons/defs/actions/search.ts +37 -0
  29. package/src/icons/defs/actions/share.ts +45 -0
  30. package/src/icons/defs/actions/sort.ts +39 -0
  31. package/src/icons/defs/actions/undo.ts +37 -0
  32. package/src/icons/defs/actions/unlink.ts +44 -0
  33. package/src/icons/defs/actions/upload.ts +36 -0
  34. package/src/icons/defs/actions/x.ts +40 -0
  35. package/src/icons/defs/communication/at-sign.ts +37 -0
  36. package/src/icons/defs/communication/bell-off.ts +44 -0
  37. package/src/icons/defs/communication/bell.ts +37 -0
  38. package/src/icons/defs/communication/inbox.ts +40 -0
  39. package/src/icons/defs/communication/index.ts +15 -0
  40. package/src/icons/defs/communication/mail.ts +40 -0
  41. package/src/icons/defs/communication/message.ts +42 -0
  42. package/src/icons/defs/communication/phone-off.ts +35 -0
  43. package/src/icons/defs/communication/phone.ts +36 -0
  44. package/src/icons/defs/communication/send.ts +37 -0
  45. package/src/icons/defs/communication/video-call.ts +44 -0
  46. package/src/icons/defs/data/calendar.ts +55 -0
  47. package/src/icons/defs/data/chart-bar.ts +48 -0
  48. package/src/icons/defs/data/chart-line.ts +41 -0
  49. package/src/icons/defs/data/chart-pie.ts +42 -0
  50. package/src/icons/defs/data/clock.ts +37 -0
  51. package/src/icons/defs/data/cloud-download.ts +41 -0
  52. package/src/icons/defs/data/cloud-upload.ts +41 -0
  53. package/src/icons/defs/data/cloud.ts +36 -0
  54. package/src/icons/defs/data/database.ts +50 -0
  55. package/src/icons/defs/data/hash.ts +43 -0
  56. package/src/icons/defs/data/index.ts +19 -0
  57. package/src/icons/defs/data/percent.ts +39 -0
  58. package/src/icons/defs/data/sync.ts +43 -0
  59. package/src/icons/defs/data/table.ts +50 -0
  60. package/src/icons/defs/data/timer.ts +47 -0
  61. package/src/icons/defs/files/archive.ts +39 -0
  62. package/src/icons/defs/files/attachment.ts +34 -0
  63. package/src/icons/defs/files/clipboard.ts +45 -0
  64. package/src/icons/defs/files/file-archive.ts +45 -0
  65. package/src/icons/defs/files/file-audio.ts +41 -0
  66. package/src/icons/defs/files/file-code.ts +41 -0
  67. package/src/icons/defs/files/file-image.ts +41 -0
  68. package/src/icons/defs/files/file-minus.ts +37 -0
  69. package/src/icons/defs/files/file-plus.ts +41 -0
  70. package/src/icons/defs/files/file-text.ts +41 -0
  71. package/src/icons/defs/files/file-video.ts +37 -0
  72. package/src/icons/defs/files/file.ts +34 -0
  73. package/src/icons/defs/files/folder-open.ts +34 -0
  74. package/src/icons/defs/files/folder-plus.ts +38 -0
  75. package/src/icons/defs/files/folder.ts +30 -0
  76. package/src/icons/defs/files/index.ts +20 -0
  77. package/src/icons/defs/index.ts +58 -0
  78. package/src/icons/defs/media/camera-off.ts +39 -0
  79. package/src/icons/defs/media/camera.ts +34 -0
  80. package/src/icons/defs/media/fast-forward.ts +34 -0
  81. package/src/icons/defs/media/image.ts +39 -0
  82. package/src/icons/defs/media/index.ts +22 -0
  83. package/src/icons/defs/media/mic-off.ts +44 -0
  84. package/src/icons/defs/media/mic.ts +39 -0
  85. package/src/icons/defs/media/music.ts +39 -0
  86. package/src/icons/defs/media/pause.ts +36 -0
  87. package/src/icons/defs/media/play.ts +34 -0
  88. package/src/icons/defs/media/rewind.ts +34 -0
  89. package/src/icons/defs/media/skip-back.ts +34 -0
  90. package/src/icons/defs/media/skip-forward.ts +34 -0
  91. package/src/icons/defs/media/stop.ts +34 -0
  92. package/src/icons/defs/media/video.ts +39 -0
  93. package/src/icons/defs/media/volume-high.ts +39 -0
  94. package/src/icons/defs/media/volume-low.ts +34 -0
  95. package/src/icons/defs/media/volume-off.ts +34 -0
  96. package/src/icons/defs/navigation/arrow-down.ts +34 -0
  97. package/src/icons/defs/navigation/arrow-left.ts +34 -0
  98. package/src/icons/defs/navigation/arrow-right.ts +34 -0
  99. package/src/icons/defs/navigation/arrow-up.ts +34 -0
  100. package/src/icons/defs/navigation/chevron-down.ts +31 -0
  101. package/src/icons/defs/navigation/chevron-left.ts +31 -0
  102. package/src/icons/defs/navigation/chevron-right.ts +31 -0
  103. package/src/icons/defs/navigation/chevron-up.ts +31 -0
  104. package/src/icons/defs/navigation/external-link.ts +37 -0
  105. package/src/icons/defs/navigation/home.ts +34 -0
  106. package/src/icons/defs/navigation/index.ts +19 -0
  107. package/src/icons/defs/navigation/maximize.ts +36 -0
  108. package/src/icons/defs/navigation/menu-dots.ts +42 -0
  109. package/src/icons/defs/navigation/menu.ts +42 -0
  110. package/src/icons/defs/navigation/minimize.ts +32 -0
  111. package/src/icons/defs/security/eye-off.ts +42 -0
  112. package/src/icons/defs/security/eye.ts +37 -0
  113. package/src/icons/defs/security/fingerprint.ts +51 -0
  114. package/src/icons/defs/security/index.ts +20 -0
  115. package/src/icons/defs/security/key.ts +43 -0
  116. package/src/icons/defs/security/lock.ts +40 -0
  117. package/src/icons/defs/security/log-in.ts +40 -0
  118. package/src/icons/defs/security/log-out.ts +40 -0
  119. package/src/icons/defs/security/shield-check.ts +34 -0
  120. package/src/icons/defs/security/shield-x.ts +38 -0
  121. package/src/icons/defs/security/shield.ts +36 -0
  122. package/src/icons/defs/security/unlock.ts +40 -0
  123. package/src/icons/defs/security/user-minus.ts +39 -0
  124. package/src/icons/defs/security/user-plus.ts +43 -0
  125. package/src/icons/defs/security/user.ts +41 -0
  126. package/src/icons/defs/security/users.ts +43 -0
  127. package/src/icons/defs/social/award.ts +41 -0
  128. package/src/icons/defs/social/bookmark-filled.ts +24 -0
  129. package/src/icons/defs/social/bookmark.ts +25 -0
  130. package/src/icons/defs/social/flag.ts +35 -0
  131. package/src/icons/defs/social/heart-filled.ts +24 -0
  132. package/src/icons/defs/social/heart.ts +25 -0
  133. package/src/icons/defs/social/index.ts +11 -0
  134. package/src/icons/defs/social/star-filled.ts +24 -0
  135. package/src/icons/defs/social/star.ts +25 -0
  136. package/src/icons/defs/social/thumbs-down.ts +42 -0
  137. package/src/icons/defs/social/thumbs-up.ts +42 -0
  138. package/src/icons/defs/social/trending.ts +36 -0
  139. package/src/icons/defs/status/battery-charging.ts +30 -0
  140. package/src/icons/defs/status/battery-full.ts +30 -0
  141. package/src/icons/defs/status/battery-low.ts +31 -0
  142. package/src/icons/defs/status/error.ts +31 -0
  143. package/src/icons/defs/status/help.ts +30 -0
  144. package/src/icons/defs/status/index.ts +12 -0
  145. package/src/icons/defs/status/info.ts +30 -0
  146. package/src/icons/defs/status/loading.ts +52 -0
  147. package/src/icons/defs/status/offline.ts +28 -0
  148. package/src/icons/defs/status/online.ts +30 -0
  149. package/src/icons/defs/status/progress.ts +31 -0
  150. package/src/icons/defs/status/success.ts +27 -0
  151. package/src/icons/defs/status/warning.ts +30 -0
  152. package/src/icons/defs/tech/api.ts +55 -0
  153. package/src/icons/defs/tech/bluetooth.ts +33 -0
  154. package/src/icons/defs/tech/bug.ts +58 -0
  155. package/src/icons/defs/tech/chip.ts +80 -0
  156. package/src/icons/defs/tech/circuit.ts +57 -0
  157. package/src/icons/defs/tech/code.ts +36 -0
  158. package/src/icons/defs/tech/cpu.ts +58 -0
  159. package/src/icons/defs/tech/git-branch.ts +41 -0
  160. package/src/icons/defs/tech/git-commit.ts +38 -0
  161. package/src/icons/defs/tech/git-merge.ts +46 -0
  162. package/src/icons/defs/tech/git-pull.ts +50 -0
  163. package/src/icons/defs/tech/globe.ts +36 -0
  164. package/src/icons/defs/tech/index.ts +27 -0
  165. package/src/icons/defs/tech/memory.ts +61 -0
  166. package/src/icons/defs/tech/qr-code.ts +81 -0
  167. package/src/icons/defs/tech/server.ts +45 -0
  168. package/src/icons/defs/tech/settings.ts +33 -0
  169. package/src/icons/defs/tech/signal.ts +43 -0
  170. package/src/icons/defs/tech/sliders.ts +63 -0
  171. package/src/icons/defs/tech/terminal.ts +36 -0
  172. package/src/icons/defs/tech/wifi-off.ts +43 -0
  173. package/src/icons/defs/tech/wifi.ts +38 -0
  174. package/src/icons/defs/tech/zap.ts +30 -0
  175. package/src/icons/icon-list.ts +305 -0
  176. package/src/icons/index.ts +95 -0
  177. package/src/icons/individual.ts +210 -0
  178. package/src/icons/registry.ts +2276 -0
  179. package/src/icons/svg/actions/check.svg +5 -0
  180. package/src/icons/svg/actions/copy.svg +6 -0
  181. package/src/icons/svg/actions/cut.svg +7 -0
  182. package/src/icons/svg/actions/delete.svg +7 -0
  183. package/src/icons/svg/actions/download.svg +5 -0
  184. package/src/icons/svg/actions/drag.svg +8 -0
  185. package/src/icons/svg/actions/edit.svg +5 -0
  186. package/src/icons/svg/actions/filter.svg +4 -0
  187. package/src/icons/svg/actions/link.svg +6 -0
  188. package/src/icons/svg/actions/minus.svg +7 -0
  189. package/src/icons/svg/actions/paste.svg +6 -0
  190. package/src/icons/svg/actions/pin.svg +5 -0
  191. package/src/icons/svg/actions/plus.svg +8 -0
  192. package/src/icons/svg/actions/redo.svg +5 -0
  193. package/src/icons/svg/actions/refresh.svg +5 -0
  194. package/src/icons/svg/actions/save.svg +5 -0
  195. package/src/icons/svg/actions/search.svg +5 -0
  196. package/src/icons/svg/actions/share.svg +7 -0
  197. package/src/icons/svg/actions/sort.svg +6 -0
  198. package/src/icons/svg/actions/undo.svg +5 -0
  199. package/src/icons/svg/actions/unlink.svg +7 -0
  200. package/src/icons/svg/actions/upload.svg +5 -0
  201. package/src/icons/svg/actions/x.svg +6 -0
  202. package/src/icons/svg/communication/at-sign.svg +5 -0
  203. package/src/icons/svg/communication/bell-off.svg +8 -0
  204. package/src/icons/svg/communication/bell.svg +5 -0
  205. package/src/icons/svg/communication/inbox.svg +6 -0
  206. package/src/icons/svg/communication/mail.svg +6 -0
  207. package/src/icons/svg/communication/message.svg +6 -0
  208. package/src/icons/svg/communication/phone-off.svg +4 -0
  209. package/src/icons/svg/communication/phone.svg +5 -0
  210. package/src/icons/svg/communication/send.svg +5 -0
  211. package/src/icons/svg/communication/video-call.svg +7 -0
  212. package/src/icons/svg/data/calendar.svg +11 -0
  213. package/src/icons/svg/data/chart-bar.svg +6 -0
  214. package/src/icons/svg/data/chart-line.svg +5 -0
  215. package/src/icons/svg/data/chart-pie.svg +6 -0
  216. package/src/icons/svg/data/clock.svg +5 -0
  217. package/src/icons/svg/data/cloud-download.svg +5 -0
  218. package/src/icons/svg/data/cloud-upload.svg +5 -0
  219. package/src/icons/svg/data/cloud.svg +4 -0
  220. package/src/icons/svg/data/database.svg +7 -0
  221. package/src/icons/svg/data/hash.svg +6 -0
  222. package/src/icons/svg/data/percent.svg +5 -0
  223. package/src/icons/svg/data/sync.svg +6 -0
  224. package/src/icons/svg/data/table.svg +7 -0
  225. package/src/icons/svg/data/timer.svg +7 -0
  226. package/src/icons/svg/files/archive.svg +5 -0
  227. package/src/icons/svg/files/attachment.svg +4 -0
  228. package/src/icons/svg/files/clipboard.svg +6 -0
  229. package/src/icons/svg/files/file-archive.svg +7 -0
  230. package/src/icons/svg/files/file-audio.svg +6 -0
  231. package/src/icons/svg/files/file-code.svg +6 -0
  232. package/src/icons/svg/files/file-image.svg +6 -0
  233. package/src/icons/svg/files/file-minus.svg +5 -0
  234. package/src/icons/svg/files/file-plus.svg +6 -0
  235. package/src/icons/svg/files/file-text.svg +6 -0
  236. package/src/icons/svg/files/file-video.svg +5 -0
  237. package/src/icons/svg/files/file.svg +4 -0
  238. package/src/icons/svg/files/folder-open.svg +4 -0
  239. package/src/icons/svg/files/folder-plus.svg +5 -0
  240. package/src/icons/svg/files/folder.svg +3 -0
  241. package/src/icons/svg/media/camera-off.svg +5 -0
  242. package/src/icons/svg/media/camera.svg +4 -0
  243. package/src/icons/svg/media/fast-forward.svg +4 -0
  244. package/src/icons/svg/media/image.svg +5 -0
  245. package/src/icons/svg/media/mic-off.svg +6 -0
  246. package/src/icons/svg/media/mic.svg +5 -0
  247. package/src/icons/svg/media/music.svg +5 -0
  248. package/src/icons/svg/media/pause.svg +4 -0
  249. package/src/icons/svg/media/play.svg +4 -0
  250. package/src/icons/svg/media/rewind.svg +4 -0
  251. package/src/icons/svg/media/skip-back.svg +4 -0
  252. package/src/icons/svg/media/skip-forward.svg +4 -0
  253. package/src/icons/svg/media/stop.svg +4 -0
  254. package/src/icons/svg/media/video.svg +5 -0
  255. package/src/icons/svg/media/volume-high.svg +5 -0
  256. package/src/icons/svg/media/volume-low.svg +4 -0
  257. package/src/icons/svg/media/volume-off.svg +4 -0
  258. package/src/icons/svg/navigation/arrow-down.svg +4 -0
  259. package/src/icons/svg/navigation/arrow-left.svg +4 -0
  260. package/src/icons/svg/navigation/arrow-right.svg +4 -0
  261. package/src/icons/svg/navigation/arrow-up.svg +4 -0
  262. package/src/icons/svg/navigation/chevron-down.svg +3 -0
  263. package/src/icons/svg/navigation/chevron-left.svg +3 -0
  264. package/src/icons/svg/navigation/chevron-right.svg +3 -0
  265. package/src/icons/svg/navigation/chevron-up.svg +3 -0
  266. package/src/icons/svg/navigation/external-link.svg +5 -0
  267. package/src/icons/svg/navigation/home.svg +4 -0
  268. package/src/icons/svg/navigation/maximize.svg +3 -0
  269. package/src/icons/svg/navigation/menu-dots.svg +5 -0
  270. package/src/icons/svg/navigation/menu.svg +5 -0
  271. package/src/icons/svg/navigation/minimize.svg +3 -0
  272. package/src/icons/svg/security/eye-off.svg +6 -0
  273. package/src/icons/svg/security/eye.svg +5 -0
  274. package/src/icons/svg/security/fingerprint.svg +9 -0
  275. package/src/icons/svg/security/key.svg +7 -0
  276. package/src/icons/svg/security/lock.svg +6 -0
  277. package/src/icons/svg/security/log-in.svg +6 -0
  278. package/src/icons/svg/security/log-out.svg +6 -0
  279. package/src/icons/svg/security/shield-check.svg +4 -0
  280. package/src/icons/svg/security/shield-x.svg +5 -0
  281. package/src/icons/svg/security/shield.svg +5 -0
  282. package/src/icons/svg/security/unlock.svg +6 -0
  283. package/src/icons/svg/security/user-minus.svg +5 -0
  284. package/src/icons/svg/security/user-plus.svg +6 -0
  285. package/src/icons/svg/security/user.svg +6 -0
  286. package/src/icons/svg/security/users.svg +6 -0
  287. package/src/icons/svg/social/award.svg +5 -0
  288. package/src/icons/svg/social/bookmark-filled.svg +3 -0
  289. package/src/icons/svg/social/bookmark.svg +3 -0
  290. package/src/icons/svg/social/flag.svg +4 -0
  291. package/src/icons/svg/social/heart-filled.svg +3 -0
  292. package/src/icons/svg/social/heart.svg +3 -0
  293. package/src/icons/svg/social/star-filled.svg +3 -0
  294. package/src/icons/svg/social/star.svg +3 -0
  295. package/src/icons/svg/social/thumbs-down.svg +5 -0
  296. package/src/icons/svg/social/thumbs-up.svg +5 -0
  297. package/src/icons/svg/social/trending.svg +4 -0
  298. package/src/icons/svg/status/battery-charging.svg +5 -0
  299. package/src/icons/svg/status/battery-full.svg +5 -0
  300. package/src/icons/svg/status/battery-low.svg +5 -0
  301. package/src/icons/svg/status/error.svg +5 -0
  302. package/src/icons/svg/status/help.svg +5 -0
  303. package/src/icons/svg/status/info.svg +5 -0
  304. package/src/icons/svg/status/loading.svg +10 -0
  305. package/src/icons/svg/status/offline.svg +4 -0
  306. package/src/icons/svg/status/online.svg +5 -0
  307. package/src/icons/svg/status/progress.svg +5 -0
  308. package/src/icons/svg/status/success.svg +4 -0
  309. package/src/icons/svg/status/warning.svg +5 -0
  310. package/src/icons/svg/tech/api.svg +10 -0
  311. package/src/icons/svg/tech/bluetooth.svg +4 -0
  312. package/src/icons/svg/tech/bug.svg +11 -0
  313. package/src/icons/svg/tech/chip.svg +16 -0
  314. package/src/icons/svg/tech/circuit.svg +15 -0
  315. package/src/icons/svg/tech/code.svg +5 -0
  316. package/src/icons/svg/tech/cpu.svg +12 -0
  317. package/src/icons/svg/tech/git-branch.svg +6 -0
  318. package/src/icons/svg/tech/git-commit.svg +5 -0
  319. package/src/icons/svg/tech/git-merge.svg +7 -0
  320. package/src/icons/svg/tech/git-pull.svg +8 -0
  321. package/src/icons/svg/tech/globe.svg +5 -0
  322. package/src/icons/svg/tech/memory.svg +12 -0
  323. package/src/icons/svg/tech/qr-code.svg +9 -0
  324. package/src/icons/svg/tech/server.svg +7 -0
  325. package/src/icons/svg/tech/settings.svg +4 -0
  326. package/src/icons/svg/tech/signal.svg +7 -0
  327. package/src/icons/svg/tech/sliders.svg +11 -0
  328. package/src/icons/svg/tech/terminal.svg +5 -0
  329. package/src/icons/svg/tech/wifi-off.svg +7 -0
  330. package/src/icons/svg/tech/wifi.svg +6 -0
  331. package/src/icons/svg/tech/zap.svg +3 -0
  332. package/src/icons/types.ts +73 -0
  333. package/src/icons/utils.ts +216 -0
  334. package/src/scss/components/_alerts.scss +76 -0
  335. package/src/scss/components/_badges.scss +198 -0
  336. package/src/scss/components/_buttons.scss +180 -0
  337. package/src/scss/components/_cards.scss +178 -0
  338. package/src/scss/components/_dropdown.scss +213 -0
  339. package/src/scss/components/_index.scss +19 -0
  340. package/src/scss/components/_inputs.scss +193 -0
  341. package/src/scss/components/_modal.scss +303 -0
  342. package/src/scss/components/_nav.scss +116 -0
  343. package/src/scss/components/_progress.scss +218 -0
  344. package/src/scss/components/_skeleton.scss +337 -0
  345. package/src/scss/components/_spinner.scss +300 -0
  346. package/src/scss/components/_tables.scss +244 -0
  347. package/src/scss/components/_tabs.scss +327 -0
  348. package/src/scss/components/_terminal.scss +259 -0
  349. package/src/scss/core/_base.scss +25 -0
  350. package/src/scss/core/_index.scss +6 -0
  351. package/src/scss/core/_layers.scss +5 -0
  352. package/src/scss/core/_mixins.scss +96 -0
  353. package/src/scss/core/_reset.scss +26 -0
  354. package/src/scss/core/_typography.scss +43 -0
  355. package/src/scss/core/_variables.scss +163 -0
  356. package/src/scss/cybercore.scss +46 -0
  357. package/src/scss/effects/_datastream.scss +43 -0
  358. package/src/scss/effects/_glitch.scss +389 -0
  359. package/src/scss/effects/_index.scss +9 -0
  360. package/src/scss/effects/_neon-border.scss +107 -0
  361. package/src/scss/effects/_noise.scss +75 -0
  362. package/src/scss/effects/_scanlines.scss +86 -0
  363. package/src/scss/utilities/_accessibility.scss +57 -0
  364. package/src/scss/utilities/_animation.scss +246 -0
  365. package/src/scss/utilities/_backgrounds.scss +201 -0
  366. package/src/scss/utilities/_borders.scss +198 -0
  367. package/src/scss/utilities/_display.scss +33 -0
  368. package/src/scss/utilities/_filters.scss +279 -0
  369. package/src/scss/utilities/_flex.scss +95 -0
  370. package/src/scss/utilities/_grid.scss +68 -0
  371. package/src/scss/utilities/_icons.scss +152 -0
  372. package/src/scss/utilities/_index.scss +35 -0
  373. package/src/scss/utilities/_interactivity.scss +186 -0
  374. package/src/scss/utilities/_layout.scss +202 -0
  375. package/src/scss/utilities/_position.scss +168 -0
  376. package/src/scss/utilities/_shadows.scss +164 -0
  377. package/src/scss/utilities/_sizing.scss +229 -0
  378. package/src/scss/utilities/_spacing.scss +185 -0
  379. package/src/scss/utilities/_text.scss +177 -0
  380. package/src/scss/utilities/_transforms.scss +212 -0
  381. package/src/scss/utilities/_transitions.scss +174 -0
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Upload Icon
3
+ * @category actions
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const upload: IconDefinition = {
8
+ name: 'upload',
9
+ category: 'actions',
10
+ description: 'Upload file or data',
11
+ tags: ['upload', 'import', 'arrow-up', 'send', 'transfer'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M12 21V9m0 0l-4 4m4-4l4 4"/>
14
+ <path d="M3 7V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2"/>
15
+ <line x1="7" y1="3" x2="17" y2="3"/>
16
+ </svg>`,
17
+ variants: {
18
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
19
+ <path d="M12 22a1 1 0 0 1-1-1v-9.59L8.71 13.7a1 1 0 1 1-1.42-1.42l4-4a1 1 0 0 1 1.42 0l4 4a1 1 0 0 1-1.42 1.42L13 11.41V21a1 1 0 0 1-1 1zM3 8a1 1 0 0 1-1-1V5a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v2a1 1 0 0 1-2 0V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1z"/>
20
+ </svg>`,
21
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
22
+ <path d="M3 7V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2" fill="currentColor" opacity="0.3"/>
23
+ <path d="M12 21V9m0 0l-4 4m4-4l4 4"/>
24
+ <path d="M3 7V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2"/>
25
+ <line x1="7" y1="3" x2="17" y2="3"/>
26
+ </svg>`,
27
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
28
+ <path d="M12 21V9m0 0l-4 4m4-4l4 4" transform="translate(1,-1)" opacity="0.5"/>
29
+ <path d="M12 21V9m0 0l-4 4m4-4l4 4"/>
30
+ <path d="M3 7V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2"/>
31
+ <line x1="7" y1="3" x2="17" y2="3"/>
32
+ </svg>`,
33
+ },
34
+ };
35
+
36
+ export default upload;
@@ -0,0 +1,40 @@
1
+ /**
2
+ * X Icon
3
+ * @category actions
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const x: IconDefinition = {
8
+ name: 'x',
9
+ category: 'actions',
10
+ description: 'Close or cancel action',
11
+ tags: ['x', 'close', 'cancel', 'dismiss', 'exit'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M18 6L6 18"/>
14
+ <path d="M6 6l12 12"/>
15
+ <circle cx="6" cy="6" r="1"/>
16
+ <circle cx="18" cy="18" r="1"/>
17
+ </svg>`,
18
+ variants: {
19
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
20
+ <path d="M18.71 5.29a1 1 0 0 1 0 1.42L13.41 12l5.3 5.29a1 1 0 0 1-1.42 1.42L12 13.41l-5.29 5.3a1 1 0 0 1-1.42-1.42L10.59 12 5.3 6.71a1 1 0 0 1 1.42-1.42L12 10.59l5.29-5.3a1 1 0 0 1 1.42 0z"/>
21
+ </svg>`,
22
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
23
+ <path d="M6 6l12 12M18 6L6 18" fill="currentColor" opacity="0.3" stroke="none"/>
24
+ <path d="M18 6L6 18"/>
25
+ <path d="M6 6l12 12"/>
26
+ <circle cx="6" cy="6" r="1"/>
27
+ <circle cx="18" cy="18" r="1"/>
28
+ </svg>`,
29
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
30
+ <path d="M18 6L6 18" transform="translate(1,-1)" opacity="0.5"/>
31
+ <path d="M6 6l12 12" transform="translate(-1,1)" opacity="0.5"/>
32
+ <path d="M18 6L6 18"/>
33
+ <path d="M6 6l12 12"/>
34
+ <circle cx="6" cy="6" r="1"/>
35
+ <circle cx="18" cy="18" r="1"/>
36
+ </svg>`,
37
+ },
38
+ };
39
+
40
+ export default x;
@@ -0,0 +1,37 @@
1
+ /**
2
+ * At Sign - Mention symbol (@)
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const atSign: IconDefinition = {
8
+ name: 'at-sign',
9
+ category: 'communication',
10
+ description: 'Mention or at symbol (@)',
11
+ tags: ['at', 'mention', 'tag', 'email', 'username'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <circle cx="12" cy="12" r="4"/>
14
+ <path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"/>
15
+ <line x1="19" y1="8" x2="19.01" y2="8"/>
16
+ </svg>`,
17
+ variants: {
18
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
19
+ <path d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10a9.96 9.96 0 0 0 3.92-.79l.63 1.87A11.96 11.96 0 0 1 12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12v1a5 5 0 0 1-10 0V8h2v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94l.63 1.87zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8z"/>
20
+ </svg>`,
21
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
22
+ <circle cx="12" cy="12" r="4" fill="currentColor" opacity="0.3"/>
23
+ <circle cx="12" cy="12" r="4"/>
24
+ <path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"/>
25
+ <line x1="19" y1="8" x2="19.01" y2="8"/>
26
+ </svg>`,
27
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
28
+ <circle cx="12" cy="12" r="4" transform="translate(1,-1)" opacity="0.5"/>
29
+ <circle cx="12" cy="12" r="4"/>
30
+ <path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" transform="translate(1,-1)" opacity="0.5"/>
31
+ <path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"/>
32
+ <line x1="19" y1="8" x2="19.01" y2="8"/>
33
+ </svg>`,
34
+ },
35
+ };
36
+
37
+ export default atSign;
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Bell Off - Notifications disabled
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const bellOff: IconDefinition = {
8
+ name: 'bell-off',
9
+ category: 'communication',
10
+ description: 'Notifications disabled (bell with slash)',
11
+ tags: ['notification', 'disabled', 'mute', 'silent', 'off'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/>
14
+ <path d="M13.73 21a2 2 0 0 1-3.46 0"/>
15
+ <line x1="2" y1="2" x2="22" y2="22"/>
16
+ </svg>`,
17
+ variants: {
18
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
19
+ <path d="M12 2c.552 0 1 .448 1 1v1.07A6.002 6.002 0 0 1 18 10c0 1.5.3 2.8.7 4l-15 15L2.3 27.6 4.3 25.6 3 24.5v-.5c1-1 2-2.5 2.5-4.5L21 3.7l-1.4-1.4-6.6 6.6V3c0-.552.448-1 1-1zm1 19c0 .552-.448 1-1 1s-1-.448-1-1h2z"/>
20
+ <path d="M3.7 3l18 18-1.4 1.4-18-18z"/>
21
+ </svg>`,
22
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
23
+ <path d="M8.7 8.7A6 6 0 0 1 18 8c0 4.5 1.5 7 2.5 8.5" fill="currentColor" opacity="0.3"/>
24
+ <path d="M8.7 8.7A6 6 0 0 1 18 8c0 4.5 1.5 7 2.5 8.5"/>
25
+ <path d="M13.73 21a2 2 0 0 1-3.46 0"/>
26
+ <path d="M3 17s1.5-2 2-5"/>
27
+ <path d="M6 8c0-.5.1-1 .2-1.5"/>
28
+ <line x1="3" y1="3" x2="21" y2="21"/>
29
+ <line x1="10" y1="4" x2="14" y2="4"/>
30
+ </svg>`,
31
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
32
+ <path d="M8.7 8.7A6 6 0 0 1 18 8c0 4.5 1.5 7 2.5 8.5" transform="translate(1,-1)" opacity="0.5"/>
33
+ <path d="M8.7 8.7A6 6 0 0 1 18 8c0 4.5 1.5 7 2.5 8.5"/>
34
+ <path d="M13.73 21a2 2 0 0 1-3.46 0"/>
35
+ <path d="M3 17s1.5-2 2-5"/>
36
+ <path d="M6 8c0-.5.1-1 .2-1.5"/>
37
+ <line x1="3" y1="3" x2="21" y2="21" transform="translate(1,-1)" opacity="0.5"/>
38
+ <line x1="3" y1="3" x2="21" y2="21"/>
39
+ <line x1="10" y1="4" x2="14" y2="4"/>
40
+ </svg>`,
41
+ },
42
+ };
43
+
44
+ export default bellOff;
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Bell - Notification bell
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const bell: IconDefinition = {
8
+ name: 'bell',
9
+ category: 'communication',
10
+ description: 'Notification bell',
11
+ tags: ['notification', 'alert', 'reminder', 'bell'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/>
14
+ <path d="M13.73 21a2 2 0 0 1-3.46 0"/>
15
+ <line x1="10" y1="4" x2="14" y2="4"/>
16
+ </svg>`,
17
+ variants: {
18
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
19
+ <path d="M12 2c.552 0 1 .448 1 1v1.07A6.002 6.002 0 0 1 18 10c0 3.5 1.5 6 3 7.5v.5H3v-.5c1.5-1.5 3-4 3-7.5a6.002 6.002 0 0 1 5-5.93V3c0-.552.448-1 1-1zm1 19c0 .552-.448 1-1 1s-1-.448-1-1h2z"/>
20
+ </svg>`,
21
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
22
+ <path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" fill="currentColor" opacity="0.3"/>
23
+ <path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/>
24
+ <path d="M13.73 21a2 2 0 0 1-3.46 0"/>
25
+ <line x1="10" y1="4" x2="14" y2="4"/>
26
+ </svg>`,
27
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
28
+ <path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" transform="translate(1,-1)" opacity="0.5"/>
29
+ <path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/>
30
+ <path d="M13.73 21a2 2 0 0 1-3.46 0" transform="translate(1,-1)" opacity="0.5"/>
31
+ <path d="M13.73 21a2 2 0 0 1-3.46 0"/>
32
+ <line x1="10" y1="4" x2="14" y2="4"/>
33
+ </svg>`,
34
+ },
35
+ };
36
+
37
+ export default bell;
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Inbox - Inbox tray with arrow
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const inbox: IconDefinition = {
8
+ name: 'inbox',
9
+ category: 'communication',
10
+ description: 'Inbox (tray with arrow)',
11
+ tags: ['inbox', 'tray', 'receive', 'download', 'messages'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <polyline points="22 12 16 12 14 15 10 15 8 12 2 12"/>
14
+ <path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"/>
15
+ <polyline points="12 8 12 2"/>
16
+ <polyline points="9 5 12 2 15 5"/>
17
+ </svg>`,
18
+ variants: {
19
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
20
+ <path d="M7.24 4h9.52a2 2 0 0 1 1.79 1.11L22 12v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6l3.45-6.89A2 2 0 0 1 7.24 4zm4.76 7.5l-3-3 1.4-1.4 1.6 1.6V2h2v6.7l1.6-1.6 1.4 1.4-3 3zm-4 1.5h2l2 3h4l2-3h2v5H8v-5z"/>
21
+ </svg>`,
22
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
23
+ <path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" fill="currentColor" opacity="0.3"/>
24
+ <polyline points="22 12 16 12 14 15 10 15 8 12 2 12"/>
25
+ <path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"/>
26
+ <polyline points="12 8 12 2"/>
27
+ <polyline points="9 5 12 2 15 5"/>
28
+ </svg>`,
29
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
30
+ <polyline points="22 12 16 12 14 15 10 15 8 12 2 12" transform="translate(1,-1)" opacity="0.5"/>
31
+ <polyline points="22 12 16 12 14 15 10 15 8 12 2 12"/>
32
+ <path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" transform="translate(1,-1)" opacity="0.5"/>
33
+ <path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"/>
34
+ <polyline points="12 8 12 2"/>
35
+ <polyline points="9 5 12 2 15 5"/>
36
+ </svg>`,
37
+ },
38
+ };
39
+
40
+ export default inbox;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Communication Icons
3
+ * Messaging & notifications
4
+ */
5
+
6
+ export { bell } from './bell';
7
+ export { bellOff } from './bell-off';
8
+ export { message } from './message';
9
+ export { mail } from './mail';
10
+ export { inbox } from './inbox';
11
+ export { send } from './send';
12
+ export { atSign } from './at-sign';
13
+ export { phone } from './phone';
14
+ export { phoneOff } from './phone-off';
15
+ export { videoCall } from './video-call';
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Mail - Email envelope
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const mail: IconDefinition = {
8
+ name: 'mail',
9
+ category: 'communication',
10
+ description: 'Email (envelope)',
11
+ tags: ['email', 'mail', 'envelope', 'message', 'letter'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>
14
+ <polyline points="22,6 12,13 2,6"/>
15
+ <line x1="7" y1="9" x2="7" y2="9"/>
16
+ <line x1="17" y1="9" x2="17" y2="9"/>
17
+ </svg>`,
18
+ variants: {
19
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
20
+ <path d="M4 4h16a2 2 0 0 1 2 2v.58l-10 6.25L2 6.58V6a2 2 0 0 1 2-2zm-2 4.42l10 6.25 10-6.25V18a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8.42z"/>
21
+ </svg>`,
22
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
23
+ <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" fill="currentColor" opacity="0.3"/>
24
+ <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>
25
+ <polyline points="22,6 12,13 2,6"/>
26
+ <line x1="7" y1="9" x2="7" y2="9"/>
27
+ <line x1="17" y1="9" x2="17" y2="9"/>
28
+ </svg>`,
29
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
30
+ <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" transform="translate(1,-1)" opacity="0.5"/>
31
+ <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>
32
+ <polyline points="22,6 12,13 2,6" transform="translate(1,-1)" opacity="0.5"/>
33
+ <polyline points="22,6 12,13 2,6"/>
34
+ <line x1="7" y1="9" x2="7" y2="9"/>
35
+ <line x1="17" y1="9" x2="17" y2="9"/>
36
+ </svg>`,
37
+ },
38
+ };
39
+
40
+ export default mail;
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Message - Chat bubble
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const message: IconDefinition = {
8
+ name: 'message',
9
+ category: 'communication',
10
+ description: 'Message or comment (chat bubble)',
11
+ tags: ['message', 'chat', 'comment', 'conversation', 'bubble'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/>
14
+ <line x1="8" y1="10" x2="8.01" y2="10"/>
15
+ <line x1="12" y1="10" x2="12.01" y2="10"/>
16
+ <line x1="16" y1="10" x2="16.01" y2="10"/>
17
+ </svg>`,
18
+ variants: {
19
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
20
+ <path d="M5 3h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H7.414l-4.707 4.707A1 1 0 0 1 1 21V5a2 2 0 0 1 2-2h2zm3 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm4 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm4 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/>
21
+ </svg>`,
22
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
23
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" fill="currentColor" opacity="0.3"/>
24
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/>
25
+ <line x1="8" y1="10" x2="8.01" y2="10"/>
26
+ <line x1="12" y1="10" x2="12.01" y2="10"/>
27
+ <line x1="16" y1="10" x2="16.01" y2="10"/>
28
+ </svg>`,
29
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
30
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" transform="translate(1,-1)" opacity="0.5"/>
31
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/>
32
+ <line x1="8" y1="10" x2="8.01" y2="10" transform="translate(1,-1)" opacity="0.5"/>
33
+ <line x1="8" y1="10" x2="8.01" y2="10"/>
34
+ <line x1="12" y1="10" x2="12.01" y2="10" transform="translate(1,-1)" opacity="0.5"/>
35
+ <line x1="12" y1="10" x2="12.01" y2="10"/>
36
+ <line x1="16" y1="10" x2="16.01" y2="10" transform="translate(1,-1)" opacity="0.5"/>
37
+ <line x1="16" y1="10" x2="16.01" y2="10"/>
38
+ </svg>`,
39
+ },
40
+ };
41
+
42
+ export default message;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * Phone Off - End call
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const phoneOff: IconDefinition = {
8
+ name: 'phone-off',
9
+ category: 'communication',
10
+ description: 'End call (phone with X)',
11
+ tags: ['phone', 'end', 'hangup', 'disconnect', 'off'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/>
14
+ <line x1="2" y1="2" x2="22" y2="22"/>
15
+ </svg>`,
16
+ variants: {
17
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
18
+ <path d="M2.707 1.293a1 1 0 0 0-1.414 1.414l1.42 1.42A2 2 0 0 0 2 5.99c0 9.28 7.72 17 17.01 17 .54 0 .99-.26.99-.99v-3.45c0-.54-.45-.99-.99-.99-1.23 0-2.42-.2-3.53-.56-.28-.11-.59-.03-.79.17l-1.57 1.97c-1.16-.56-2.24-1.27-3.24-2.09l12.41-12.41a1 1 0 0 0-1.414-1.414L2.707 1.293zM8.09 9.91l-1.27 1.25c-.28.27-.36.67-.24 1.02.37 1.11.56 2.3.56 3.53 0 .54.45.99.99.99h3.46c.74 0 1.18-.83.75-1.45-.32-.47-.71-.91-1.16-1.31L8.09 9.91z"/>
19
+ <line x1="2" y1="2" x2="22" y2="22" stroke="currentColor" stroke-width="2"/>
20
+ </svg>`,
21
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
22
+ <path d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91" fill="currentColor" opacity="0.3"/>
23
+ <path d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"/>
24
+ <line x1="22" y1="2" x2="2" y2="22"/>
25
+ </svg>`,
26
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
27
+ <path d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91" transform="translate(1,-1)" opacity="0.5"/>
28
+ <path d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"/>
29
+ <line x1="22" y1="2" x2="2" y2="22" transform="translate(1,-1)" opacity="0.5"/>
30
+ <line x1="22" y1="2" x2="2" y2="22"/>
31
+ </svg>`,
32
+ },
33
+ };
34
+
35
+ export default phoneOff;
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Phone - Phone call
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const phone: IconDefinition = {
8
+ name: 'phone',
9
+ category: 'communication',
10
+ description: 'Phone call',
11
+ tags: ['phone', 'call', 'telephone', 'contact', 'voice'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/>
14
+ <line x1="15" y1="3" x2="15.01" y2="3"/>
15
+ <line x1="18" y1="6" x2="18.01" y2="6"/>
16
+ </svg>`,
17
+ variants: {
18
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
19
+ <path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 0 0-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/>
20
+ </svg>`,
21
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
22
+ <path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" fill="currentColor" opacity="0.3"/>
23
+ <path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/>
24
+ <line x1="15" y1="3" x2="15.01" y2="3"/>
25
+ <line x1="18" y1="6" x2="18.01" y2="6"/>
26
+ </svg>`,
27
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
28
+ <path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" transform="translate(1,-1)" opacity="0.5"/>
29
+ <path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/>
30
+ <line x1="15" y1="3" x2="15.01" y2="3"/>
31
+ <line x1="18" y1="6" x2="18.01" y2="6"/>
32
+ </svg>`,
33
+ },
34
+ };
35
+
36
+ export default phone;
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Send - Send message (paper plane)
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const send: IconDefinition = {
8
+ name: 'send',
9
+ category: 'communication',
10
+ description: 'Send message (paper plane)',
11
+ tags: ['send', 'submit', 'message', 'plane', 'transmit'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <line x1="22" y1="2" x2="11" y2="13"/>
14
+ <polygon points="22 2 15 22 11 13 2 9 22 2"/>
15
+ <line x1="11" y1="13" x2="11.5" y2="13.5"/>
16
+ </svg>`,
17
+ variants: {
18
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
19
+ <path d="M22.707 1.293a1 1 0 0 1 .083 1.32l-.083.094-7 13a1 1 0 0 1-1.706.107l-.07-.107-3.224-5.981-5.98-3.223a1 1 0 0 1 .107-1.707l.094-.083 13-7a1 1 0 0 1 1.32.083l.459.504z"/>
20
+ </svg>`,
21
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
22
+ <polygon points="22 2 15 22 11 13 2 9 22 2" fill="currentColor" opacity="0.3"/>
23
+ <line x1="22" y1="2" x2="11" y2="13"/>
24
+ <polygon points="22 2 15 22 11 13 2 9 22 2"/>
25
+ <line x1="11" y1="13" x2="11.5" y2="13.5"/>
26
+ </svg>`,
27
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
28
+ <line x1="22" y1="2" x2="11" y2="13" transform="translate(1,-1)" opacity="0.5"/>
29
+ <line x1="22" y1="2" x2="11" y2="13"/>
30
+ <polygon points="22 2 15 22 11 13 2 9 22 2" transform="translate(1,-1)" opacity="0.5"/>
31
+ <polygon points="22 2 15 22 11 13 2 9 22 2"/>
32
+ <line x1="11" y1="13" x2="11.5" y2="13.5"/>
33
+ </svg>`,
34
+ },
35
+ };
36
+
37
+ export default send;
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Video Call - Video call with camera
3
+ * @category communication
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const videoCall: IconDefinition = {
8
+ name: 'video-call',
9
+ category: 'communication',
10
+ description: 'Video call (camera with person)',
11
+ tags: ['video', 'call', 'camera', 'conference', 'meeting'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M23 7l-7 5 7 5V7z"/>
14
+ <rect x="1" y="5" width="15" height="14" rx="2" ry="2"/>
15
+ <circle cx="8.5" cy="10" r="2"/>
16
+ <path d="M13 16c0-1.5-1.34-3-4.5-3S4 14.5 4 16"/>
17
+ <line x1="19" y1="4" x2="19.01" y2="4"/>
18
+ </svg>`,
19
+ variants: {
20
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
21
+ <path d="M3 5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5zm5.5 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm4.5 4c0-1.5-1.34-3-4.5-3S4 14.5 4 16h9z"/>
22
+ <path d="M23 7l-7 5 7 5V7z"/>
23
+ </svg>`,
24
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
25
+ <rect x="1" y="5" width="15" height="14" rx="2" ry="2" fill="currentColor" opacity="0.3"/>
26
+ <path d="M23 7l-7 5 7 5V7z"/>
27
+ <rect x="1" y="5" width="15" height="14" rx="2" ry="2"/>
28
+ <circle cx="8.5" cy="10" r="2"/>
29
+ <path d="M13 16c0-1.5-1.34-3-4.5-3S4 14.5 4 16"/>
30
+ <line x1="19" y1="4" x2="19.01" y2="4"/>
31
+ </svg>`,
32
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
33
+ <path d="M23 7l-7 5 7 5V7z" transform="translate(1,-1)" opacity="0.5"/>
34
+ <path d="M23 7l-7 5 7 5V7z"/>
35
+ <rect x="1" y="5" width="15" height="14" rx="2" ry="2" transform="translate(1,-1)" opacity="0.5"/>
36
+ <rect x="1" y="5" width="15" height="14" rx="2" ry="2"/>
37
+ <circle cx="8.5" cy="10" r="2"/>
38
+ <path d="M13 16c0-1.5-1.34-3-4.5-3S4 14.5 4 16"/>
39
+ <line x1="19" y1="4" x2="19.01" y2="4"/>
40
+ </svg>`,
41
+ },
42
+ };
43
+
44
+ export default videoCall;
@@ -0,0 +1,55 @@
1
+ /**
2
+ * Calendar Icon
3
+ * @category data
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const calendar: IconDefinition = {
8
+ name: 'calendar',
9
+ category: 'data',
10
+ description: 'Calendar with date grid',
11
+ tags: ['calendar', 'date', 'schedule', 'time', 'event'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <rect x="3" y="4" width="18" height="18" rx="2"/>
14
+ <path d="M3 10h18"/>
15
+ <path d="M8 2v4"/>
16
+ <path d="M16 2v4"/>
17
+ <path d="M8 14h.01"/>
18
+ <path d="M12 14h.01"/>
19
+ <path d="M16 14h.01"/>
20
+ <path d="M8 18h.01"/>
21
+ <path d="M12 18h.01"/>
22
+ </svg>`,
23
+ variants: {
24
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
25
+ <path d="M8 1v2h8V1h2v2h1a3 3 0 013 3v14a3 3 0 01-3 3H5a3 3 0 01-3-3V6a3 3 0 013-3h1V1h2zm13 10H3v9a1 1 0 001 1h16a1 1 0 001-1v-9zm-12 3h1v1H9v-1zm3 0h1v1h-1v-1zm3 0h1v1h-1v-1zM9 18h1v1H9v-1zm3 0h1v1h-1v-1z"/>
26
+ </svg>`,
27
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
28
+ <rect x="3" y="4" width="18" height="18" rx="2" fill="currentColor" opacity="0.3"/>
29
+ <rect x="3" y="4" width="18" height="18" rx="2"/>
30
+ <path d="M3 10h18"/>
31
+ <path d="M8 2v4"/>
32
+ <path d="M16 2v4"/>
33
+ <path d="M8 14h.01"/>
34
+ <path d="M12 14h.01"/>
35
+ <path d="M16 14h.01"/>
36
+ <path d="M8 18h.01"/>
37
+ <path d="M12 18h.01"/>
38
+ </svg>`,
39
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
40
+ <rect x="3" y="4" width="18" height="18" rx="2" transform="translate(1,-1)" opacity="0.3"/>
41
+ <rect x="3" y="4" width="18" height="18" rx="2"/>
42
+ <path d="M3 10h18" transform="translate(1,-1)" opacity="0.3"/>
43
+ <path d="M3 10h18"/>
44
+ <path d="M8 2v4"/>
45
+ <path d="M16 2v4"/>
46
+ <path d="M8 14h.01"/>
47
+ <path d="M12 14h.01"/>
48
+ <path d="M16 14h.01"/>
49
+ <path d="M8 18h.01"/>
50
+ <path d="M12 18h.01"/>
51
+ </svg>`,
52
+ },
53
+ };
54
+
55
+ export default calendar;
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Bar Chart Icon
3
+ * @category data
4
+ */
5
+ import type { IconDefinition } from '../../types';
6
+
7
+ export const chartBar: IconDefinition = {
8
+ name: 'chart-bar',
9
+ category: 'data',
10
+ description: 'Bar chart with vertical columns',
11
+ tags: ['chart', 'graph', 'bar', 'analytics', 'data', 'statistics'],
12
+ svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
13
+ <path d="M3 3v16a2 2 0 0 0 2 2h16"/>
14
+ <path d="M7 16V9"/>
15
+ <path d="M12 16V6"/>
16
+ <path d="M17 16v-4"/>
17
+ </svg>`,
18
+ variants: {
19
+ solid: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
20
+ <path d="M3 2a1 1 0 0 1 1 1v16c0 .6.4 1 1 1h16a1 1 0 1 1 0 2H5a3 3 0 0 1-3-3V3a1 1 0 0 1 1-1z"/>
21
+ <rect x="6" y="8" width="2" height="9" rx="1"/>
22
+ <rect x="11" y="5" width="2" height="12" rx="1"/>
23
+ <rect x="16" y="11" width="2" height="6" rx="1"/>
24
+ </svg>`,
25
+ duotone: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
26
+ <path d="M3 3v16a2 2 0 0 0 2 2h16"/>
27
+ <rect x="6.5" y="9" width="1" height="7" fill="currentColor" opacity="0.3"/>
28
+ <rect x="11.5" y="6" width="1" height="10" fill="currentColor" opacity="0.3"/>
29
+ <rect x="16.5" y="12" width="1" height="4" fill="currentColor" opacity="0.3"/>
30
+ <path d="M7 16V9"/>
31
+ <path d="M12 16V6"/>
32
+ <path d="M17 16v-4"/>
33
+ </svg>`,
34
+ glitch: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
35
+ <path d="M3 3v16a2 2 0 0 0 2 2h16"/>
36
+ <path d="M7 16V9"/>
37
+ <path d="M12 16V6"/>
38
+ <path d="M17 16v-4"/>
39
+ <g opacity="0.4" transform="translate(1,-1)">
40
+ <path d="M7 16V9"/>
41
+ <path d="M12 16V6"/>
42
+ <path d="M17 16v-4"/>
43
+ </g>
44
+ </svg>`,
45
+ },
46
+ };
47
+
48
+ export default chartBar;