@apple-pie/slice 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/chunks/Avatar-0EXaRG4e.js +54 -0
- package/dist/cjs/chunks/AvatarGroup-BsRUAZl0.js +37 -0
- package/dist/cjs/chunks/Badge-Bv6c2YVC.js +23 -0
- package/dist/cjs/chunks/Button-DFAWHJmQ.js +246 -0
- package/dist/cjs/chunks/ButtonBar-DOgYDAda.js +53 -0
- package/dist/cjs/chunks/Card-BPClSuHa.js +37 -0
- package/dist/cjs/chunks/CheckBox-tsExpwtr.js +56 -0
- package/dist/cjs/chunks/Chip-CPHF1zn-.js +84 -0
- package/dist/cjs/chunks/DivInput-DDQVtlot.js +102 -0
- package/dist/cjs/chunks/DocIcons-B5TcBqSH.js +108 -0
- package/dist/cjs/chunks/Dot-BSSClfHQ.js +73 -0
- package/dist/cjs/chunks/DrggablePanel-wWLPesc8.js +202 -0
- package/dist/cjs/chunks/DropDown-COdCr77A.js +102 -0
- package/dist/cjs/chunks/ErrorSummary-CIUqlSLC.js +60 -0
- package/dist/cjs/chunks/FileIcon-DTQaXxfC.js +221 -0
- package/dist/cjs/chunks/FileList-J2EgJyCo.js +217 -0
- package/dist/cjs/chunks/FlexDiv-CW5gSa4V.js +65 -0
- package/dist/cjs/chunks/Grouper-QwwunKen.js +61 -0
- package/dist/cjs/chunks/IconButton-B53y3z1_.js +77 -0
- package/dist/cjs/chunks/Label-DoiS07-y.js +111 -0
- package/dist/cjs/chunks/Logos-CAHU-eIP.js +483 -0
- package/dist/cjs/chunks/Overlay-Bb2YoSKr.js +36 -0
- package/dist/cjs/chunks/Pager-CN2z8M9E.js +37 -0
- package/dist/cjs/chunks/ProgressIndicator-BbrZ7Aoc.js +157 -0
- package/dist/cjs/chunks/PromptInput-BXDqUXFQ.js +150 -0
- package/dist/cjs/chunks/RadioButton-GKRhZEmb.js +56 -0
- package/dist/cjs/chunks/RadioButtonList-CFpZmyAX.js +59 -0
- package/dist/cjs/chunks/Slider-CZvCAodl.js +136 -0
- package/dist/cjs/chunks/Spacer-CtxV2Pww.js +18 -0
- package/dist/cjs/chunks/Switch-C94aofxQ.js +37 -0
- package/dist/cjs/chunks/TabBar-D6akzNUf.js +123 -0
- package/dist/cjs/chunks/TextArea-DjF8Koup.js +82 -0
- package/dist/cjs/chunks/TextField-Cg6mQcYl.js +204 -0
- package/dist/cjs/chunks/Tip-CjMHa-fD.js +88 -0
- package/dist/cjs/chunks/Toast-Cdyh6T-l.js +163 -0
- package/dist/cjs/chunks/UploadArea-BmZ50EEl.js +123 -0
- package/dist/cjs/chunks/_types-B5xXv4NA.js +1386 -0
- package/dist/cjs/chunks/sharedTypes-gCECyn2N.js +6 -0
- package/dist/cjs/chunks/style-inject.es-CMuL-BfJ.js +11 -0
- package/dist/cjs/chunks/tipStore-Ck4NLvml.js +17 -0
- package/dist/cjs/chunks/toastStore-CSStgB9d.js +17 -0
- package/dist/cjs/chunks/tslib.es6-C8dZW5nY.js +49 -0
- package/dist/cjs/chunks/uploads-worker-mD8pcsGP.js +221 -0
- package/dist/cjs/chunks/uploadsStore-CxWIctvI.js +75 -0
- package/dist/cjs/chunks/utils-BsBHecUI.js +70 -0
- package/dist/cjs/chunks/windowStore-RaJswiHM.js +70 -0
- package/dist/cjs/hooks/useDoubleClick.js +11 -23
- package/dist/cjs/hooks/useKeyboardShortcuts.js +18 -35
- package/dist/cjs/hooks/useLastUpdated.js +20 -42
- package/dist/cjs/hooks/useLocalStore.js +23 -39
- package/dist/cjs/hooks/useObserveResize.js +26 -44
- package/dist/cjs/hooks/useObserveTheme.js +18 -36
- package/dist/cjs/hooks/useTheme.js +17 -40
- package/dist/cjs/hooks/useToolTip.js +19 -32
- package/dist/cjs/hooks/useTrackRenders.js +11 -29
- package/dist/cjs/hooks/useWindow.js +29 -65
- package/dist/cjs/hooks.js +12 -30
- package/dist/cjs/index.js +46 -134
- package/dist/cjs/providers/ThemeProvider.js +27 -45
- package/dist/cjs/providers.js +5 -12
- package/dist/cjs/stores/tip.js +4 -9
- package/dist/cjs/stores/toast.js +4 -9
- package/dist/cjs/stores/uploads.js +11 -0
- package/dist/cjs/stores/window.js +8 -10
- package/dist/cjs/stores.js +18 -21
- package/dist/cjs/theme/colors.js +371 -379
- package/dist/cjs/theme/corners.js +10 -12
- package/dist/cjs/theme/elevations.js +10 -13
- package/dist/cjs/theme/themes.js +8 -13
- package/dist/cjs/theme/type.js +225 -384
- package/dist/cjs/theme.js +5 -13
- package/dist/cjs/uikit/Avatar/index.js +6 -0
- package/dist/cjs/uikit/AvatarGroup/index.js +7 -0
- package/dist/cjs/uikit/Badge/index.js +6 -0
- package/dist/cjs/uikit/Button/index.js +12 -0
- package/dist/cjs/uikit/ButtonBar/index.js +12 -0
- package/dist/cjs/uikit/Card/index.js +10 -0
- package/dist/cjs/uikit/CheckBox/index.js +10 -0
- package/dist/cjs/uikit/Chip/index.js +11 -0
- package/dist/cjs/uikit/DivInput/index.js +7 -0
- package/dist/cjs/uikit/DocIcon/index.js +9 -0
- package/dist/cjs/uikit/Dot/index.js +6 -0
- package/dist/cjs/uikit/DraggablePanel/index.js +10 -0
- package/dist/cjs/uikit/DropDown/index.js +10 -0
- package/dist/cjs/uikit/ErrorSummary/index.js +6 -0
- package/dist/cjs/uikit/FileIcon/index.js +15 -0
- package/dist/cjs/uikit/FileList/index.js +11 -0
- package/dist/cjs/uikit/FlexDiv/index.js +6 -0
- package/dist/cjs/uikit/Grouper/index.js +11 -0
- package/dist/cjs/uikit/Icon/index.js +14 -0
- package/dist/cjs/uikit/IconButton/index.js +12 -0
- package/dist/cjs/uikit/Label/index.js +10 -0
- package/dist/cjs/uikit/Logos/index.js +9 -0
- package/dist/cjs/uikit/Overlay/index.js +6 -0
- package/dist/cjs/uikit/Pager/index.js +7 -0
- package/dist/cjs/uikit/Progress/index.js +10 -0
- package/dist/cjs/uikit/PromptInput/index.js +14 -0
- package/dist/cjs/uikit/RadioButton/index.js +12 -0
- package/dist/cjs/uikit/RadioButtonList/index.js +13 -0
- package/dist/cjs/uikit/Slider/index.js +7 -0
- package/dist/cjs/uikit/Spacer/index.js +6 -0
- package/dist/cjs/uikit/Switch/index.js +6 -0
- package/dist/cjs/uikit/TabBar/index.js +12 -0
- package/dist/cjs/uikit/TextArea/index.js +13 -0
- package/dist/cjs/uikit/Textfield/index.js +13 -0
- package/dist/cjs/uikit/Tip/index.js +7 -0
- package/dist/cjs/uikit/Toast/index.js +16 -0
- package/dist/cjs/uikit/UploadArea/index.js +15 -0
- package/dist/cjs/workers/uploads/uploads.js +5 -0
- package/dist/esm/chunks/Avatar-D_W5zErj.mjs +60 -0
- package/dist/esm/chunks/AvatarGroup-Dbfmz0Yz.mjs +45 -0
- package/dist/esm/chunks/Badge-BISGWj5-.mjs +29 -0
- package/dist/esm/chunks/Button-B_aIY6wE.mjs +264 -0
- package/dist/esm/chunks/ButtonBar-Cr6TFvvD.mjs +66 -0
- package/dist/esm/chunks/Card-BzKBF0ny.mjs +45 -0
- package/dist/esm/chunks/CheckBox-CYggPKaT.mjs +68 -0
- package/dist/esm/chunks/Chip-B3wb9g1U.mjs +96 -0
- package/dist/esm/chunks/DivInput-_VL6PAqT.mjs +114 -0
- package/dist/esm/chunks/DocIcons-BxtcXsWI.mjs +114 -0
- package/dist/esm/chunks/Dot-C-Xu24wF.mjs +81 -0
- package/dist/esm/chunks/DrggablePanel-Bg3UKK1k.mjs +214 -0
- package/dist/esm/chunks/DropDown-D7KyGLkM.mjs +114 -0
- package/dist/esm/chunks/ErrorSummary-CZw06dSh.mjs +68 -0
- package/dist/esm/chunks/FileIcon-BcIJzIwA.mjs +233 -0
- package/dist/esm/chunks/FileList-DUzgHfE-.mjs +229 -0
- package/dist/esm/chunks/FlexDiv-BLYDgWu2.mjs +73 -0
- package/dist/esm/chunks/Grouper-CRldBHSw.mjs +75 -0
- package/dist/esm/chunks/IconButton-BBiZrXlS.mjs +93 -0
- package/dist/esm/chunks/Label-DPIAVkn1.mjs +124 -0
- package/dist/esm/chunks/Logos-CpcaarOG.mjs +493 -0
- package/dist/esm/chunks/Overlay-Bh0enFIe.mjs +44 -0
- package/dist/esm/chunks/Pager-B-1ZRUzU.mjs +45 -0
- package/dist/esm/chunks/ProgressIndicator-CNOBQ_Fv.mjs +167 -0
- package/dist/esm/chunks/PromptInput-DdsIgZ3T.mjs +160 -0
- package/dist/esm/chunks/RadioButton-D-TdQu3a.mjs +66 -0
- package/dist/esm/chunks/RadioButtonList-CEScWkbT.mjs +67 -0
- package/dist/esm/chunks/Slider-C3A8GCfH.mjs +142 -0
- package/dist/esm/chunks/Spacer-BlgEdKEM.mjs +20 -0
- package/dist/esm/chunks/Switch-obpmvCGd.mjs +45 -0
- package/dist/esm/chunks/TabBar-DFj021UP.mjs +141 -0
- package/dist/esm/chunks/TextArea-D_hq6VF3.mjs +90 -0
- package/dist/esm/chunks/TextField-Co0u-xdd.mjs +222 -0
- package/dist/esm/chunks/Tip-CHQh-Yq0.mjs +98 -0
- package/dist/esm/chunks/Toast-BiXzVFtM.mjs +179 -0
- package/dist/esm/chunks/UploadArea-B9685Z06.mjs +133 -0
- package/dist/esm/chunks/_types-KZDzhaiK.mjs +1395 -0
- package/dist/esm/chunks/sharedTypes-tn9-uJvb.mjs +8 -0
- package/dist/esm/chunks/style-inject.es-D0BjEaN8.mjs +11 -0
- package/dist/esm/chunks/tipStore-CL5a95Bl.mjs +15 -0
- package/dist/esm/chunks/toastStore-D2PEIqCo.mjs +15 -0
- package/dist/esm/chunks/tslib.es6-c-7TIv71.mjs +53 -0
- package/dist/esm/chunks/uploads-worker-Dv-4zGnC.mjs +224 -0
- package/dist/esm/chunks/uploadsStore-D69fEXMY.mjs +72 -0
- package/dist/esm/chunks/utils-BQ1v7VE4.mjs +74 -0
- package/dist/esm/chunks/windowStore-CwW0i_le.mjs +71 -0
- package/dist/esm/hooks/useDoubleClick.mjs +14 -0
- package/dist/esm/hooks/useKeyboardShortcuts.mjs +27 -0
- package/dist/esm/hooks/useLastUpdated.mjs +31 -0
- package/dist/esm/hooks/useLocalStore.mjs +36 -0
- package/dist/esm/hooks/useObserveResize.mjs +38 -0
- package/dist/esm/hooks/useObserveTheme.mjs +34 -0
- package/dist/esm/hooks/useTheme.mjs +73 -0
- package/dist/esm/hooks/useToolTip.mjs +23 -0
- package/dist/esm/hooks/useTrackRenders.mjs +23 -0
- package/dist/esm/hooks/useWindow.mjs +52 -0
- package/dist/esm/hooks.mjs +29 -0
- package/dist/esm/index.mjs +117 -0
- package/dist/esm/providers/ThemeProvider.mjs +49 -0
- package/dist/esm/providers.mjs +15 -0
- package/dist/esm/stores/tip.mjs +3 -0
- package/dist/esm/stores/toast.mjs +3 -0
- package/dist/esm/stores/uploads.mjs +7 -0
- package/dist/esm/stores/window.mjs +3 -0
- package/dist/esm/stores.mjs +13 -0
- package/dist/esm/theme/colors.mjs +373 -0
- package/dist/esm/theme/corners.mjs +12 -0
- package/dist/esm/theme/elevations.mjs +15 -0
- package/dist/esm/theme/themes.mjs +25 -0
- package/dist/esm/theme/type.mjs +236 -0
- package/dist/esm/theme.mjs +9 -0
- package/dist/esm/uikit/Avatar/index.mjs +9 -0
- package/dist/esm/uikit/AvatarGroup/index.mjs +11 -0
- package/dist/esm/uikit/Badge/index.mjs +9 -0
- package/dist/esm/uikit/Button/index.mjs +39 -0
- package/dist/esm/uikit/ButtonBar/index.mjs +39 -0
- package/dist/esm/uikit/Card/index.mjs +29 -0
- package/dist/esm/uikit/CheckBox/index.mjs +31 -0
- package/dist/esm/uikit/Chip/index.mjs +31 -0
- package/dist/esm/uikit/DivInput/index.mjs +13 -0
- package/dist/esm/uikit/DocIcon/index.mjs +23 -0
- package/dist/esm/uikit/Dot/index.mjs +11 -0
- package/dist/esm/uikit/DraggablePanel/index.mjs +29 -0
- package/dist/esm/uikit/DropDown/index.mjs +29 -0
- package/dist/esm/uikit/ErrorSummary/index.mjs +11 -0
- package/dist/esm/uikit/FileIcon/index.mjs +25 -0
- package/dist/esm/uikit/FileList/index.mjs +35 -0
- package/dist/esm/uikit/FlexDiv/index.mjs +11 -0
- package/dist/esm/uikit/Grouper/index.mjs +33 -0
- package/dist/esm/uikit/Icon/index.mjs +25 -0
- package/dist/esm/uikit/IconButton/index.mjs +37 -0
- package/dist/esm/uikit/Label/index.mjs +27 -0
- package/dist/esm/uikit/Logos/index.mjs +23 -0
- package/dist/esm/uikit/Overlay/index.mjs +11 -0
- package/dist/esm/uikit/Pager/index.mjs +11 -0
- package/dist/esm/uikit/Progress/index.mjs +27 -0
- package/dist/esm/uikit/PromptInput/index.mjs +45 -0
- package/dist/esm/uikit/RadioButton/index.mjs +39 -0
- package/dist/esm/uikit/RadioButtonList/index.mjs +41 -0
- package/dist/esm/uikit/Slider/index.mjs +13 -0
- package/dist/esm/uikit/Spacer/index.mjs +7 -0
- package/dist/esm/uikit/Switch/index.mjs +11 -0
- package/dist/esm/uikit/TabBar/index.mjs +39 -0
- package/dist/esm/uikit/TextArea/index.mjs +41 -0
- package/dist/esm/uikit/Textfield/index.mjs +43 -0
- package/dist/esm/uikit/Tip/index.mjs +13 -0
- package/dist/esm/uikit/Toast/index.mjs +31 -0
- package/dist/esm/uikit/UploadArea/index.mjs +37 -0
- package/dist/esm/workers/uploads/uploads.mjs +5 -0
- package/dist/types/stores/index.d.ts +1 -0
- package/dist/types/stores/uploads/_types.d.ts +16 -0
- package/dist/types/stores/uploads/index.d.ts +2 -0
- package/dist/types/stores/uploads/uploadsStore.d.ts +22 -0
- package/dist/types/workers/uploads/uploads-worker.d.ts +129 -0
- package/dist/types/workers/uploads/uploads.d.ts +1 -0
- package/dist/types/workers/uploads/uploads.runtime.d.ts +1 -0
- package/package.json +23 -17
- package/dist/cjs/chunks/Avatar-z2YcOAoP.js +0 -68
- package/dist/cjs/chunks/AvatarGroup-Cz8369zI.js +0 -39
- package/dist/cjs/chunks/Badge-COSg__VJ.js +0 -41
- package/dist/cjs/chunks/Button-BNXqiA13.js +0 -312
- package/dist/cjs/chunks/ButtonBar-CeDdAOlH.js +0 -58
- package/dist/cjs/chunks/Card-Cc_c-S7i.js +0 -36
- package/dist/cjs/chunks/CheckBox-hTWIPqV_.js +0 -76
- package/dist/cjs/chunks/Chip-CLKVldi4.js +0 -93
- package/dist/cjs/chunks/DivInput-DnY2emt-.js +0 -204
- package/dist/cjs/chunks/DocIcons-BRWOzK96.js +0 -41
- package/dist/cjs/chunks/Dot-B5dO8kSS.js +0 -80
- package/dist/cjs/chunks/DrggablePanel-BtsURL9o.js +0 -302
- package/dist/cjs/chunks/DropDown-COr9u96t.js +0 -154
- package/dist/cjs/chunks/ErrorSummary-BrSHbGpk.js +0 -42
- package/dist/cjs/chunks/FileIcon-CEMQK_Je.js +0 -132
- package/dist/cjs/chunks/FileList-BHMne9Mr.js +0 -163
- package/dist/cjs/chunks/FlexDiv-BHl29ywz.js +0 -103
- package/dist/cjs/chunks/Grouper-EyHoeA8w.js +0 -50
- package/dist/cjs/chunks/IconButton-9QZ4eKBZ.js +0 -84
- package/dist/cjs/chunks/Label-s1aCv2Y1.js +0 -134
- package/dist/cjs/chunks/Logos-DSlAUz8l.js +0 -119
- package/dist/cjs/chunks/Overlay-DV3C5NDO.js +0 -45
- package/dist/cjs/chunks/Pager-CRjpl1FZ.js +0 -42
- package/dist/cjs/chunks/ProgressIndicator-BAwAaw58.js +0 -121
- package/dist/cjs/chunks/PromptInput-CfzofBTJ.js +0 -212
- package/dist/cjs/chunks/RadioButton-DA9YUGEF.js +0 -65
- package/dist/cjs/chunks/RadioButtonList-BtsT7GJc.js +0 -116
- package/dist/cjs/chunks/Slider-CqrIwn-L.js +0 -285
- package/dist/cjs/chunks/Spacer-BEY2-_PB.js +0 -16
- package/dist/cjs/chunks/Switch-CtkFtogd.js +0 -43
- package/dist/cjs/chunks/TabBar-WsNlr-aZ.js +0 -176
- package/dist/cjs/chunks/TextArea-BMJWUH2H.js +0 -153
- package/dist/cjs/chunks/TextField-mfwz79cD.js +0 -248
- package/dist/cjs/chunks/Tip-Af6FMEDi.js +0 -91
- package/dist/cjs/chunks/Toast-CxAEOW4z.js +0 -158
- package/dist/cjs/chunks/UploadArea-DunGYE1_.js +0 -155
- package/dist/cjs/chunks/_types-BNlHsGMQ.js +0 -714
- package/dist/cjs/chunks/sharedTypes-BvTjh6M5.js +0 -9
- package/dist/cjs/chunks/style-inject.es-XZHJH68X.js +0 -30
- package/dist/cjs/chunks/tipStore-C9oV9SIh.js +0 -23
- package/dist/cjs/chunks/toastStore-C-ETP9H6.js +0 -23
- package/dist/cjs/chunks/tslib.es6-4H29ixHs.js +0 -48
- package/dist/cjs/chunks/utils-BwNacfBU.js +0 -128
- package/dist/cjs/chunks/windowStore-CPcVHJq6.js +0 -93
- package/dist/cjs/uikit/Avatar.js +0 -11
- package/dist/cjs/uikit/AvatarGroup.js +0 -12
- package/dist/cjs/uikit/Badge.js +0 -11
- package/dist/cjs/uikit/Button.js +0 -26
- package/dist/cjs/uikit/ButtonBar.js +0 -26
- package/dist/cjs/uikit/Card.js +0 -21
- package/dist/cjs/uikit/CheckBox.js +0 -22
- package/dist/cjs/uikit/Chip.js +0 -22
- package/dist/cjs/uikit/DivInput.js +0 -13
- package/dist/cjs/uikit/DocIcon.js +0 -18
- package/dist/cjs/uikit/Dot.js +0 -12
- package/dist/cjs/uikit/DraggablePanel.js +0 -21
- package/dist/cjs/uikit/DropDown.js +0 -21
- package/dist/cjs/uikit/ErrorSummary.js +0 -12
- package/dist/cjs/uikit/FileIcon.js +0 -23
- package/dist/cjs/uikit/FileList.js +0 -24
- package/dist/cjs/uikit/FlexDiv.js +0 -12
- package/dist/cjs/uikit/Grouper.js +0 -23
- package/dist/cjs/uikit/Icon.js +0 -23
- package/dist/cjs/uikit/IconButton.js +0 -25
- package/dist/cjs/uikit/Label.js +0 -20
- package/dist/cjs/uikit/Logos.js +0 -18
- package/dist/cjs/uikit/Overlay.js +0 -12
- package/dist/cjs/uikit/Pager.js +0 -12
- package/dist/cjs/uikit/Progress.js +0 -21
- package/dist/cjs/uikit/PromptInput.js +0 -29
- package/dist/cjs/uikit/RadioButton.js +0 -26
- package/dist/cjs/uikit/RadioButtonList.js +0 -27
- package/dist/cjs/uikit/Slider.js +0 -13
- package/dist/cjs/uikit/Spacer.js +0 -10
- package/dist/cjs/uikit/Switch.js +0 -12
- package/dist/cjs/uikit/TabBar.js +0 -26
- package/dist/cjs/uikit/TextArea.js +0 -27
- package/dist/cjs/uikit/Textfield.js +0 -28
- package/dist/cjs/uikit/Tip.js +0 -13
- package/dist/cjs/uikit/Toast.js +0 -26
- package/dist/cjs/uikit/UploadArea.js +0 -31
- package/dist/esm/chunks/Avatar-BtkvMV1v.js +0 -66
- package/dist/esm/chunks/AvatarGroup-pbqdS56o.js +0 -37
- package/dist/esm/chunks/Badge-DtxDLSO0.js +0 -39
- package/dist/esm/chunks/Button-BUJkJqdO.js +0 -310
- package/dist/esm/chunks/ButtonBar-Bl0oCxd8.js +0 -56
- package/dist/esm/chunks/Card-Bjk0kgQh.js +0 -34
- package/dist/esm/chunks/CheckBox-CvkZuSeB.js +0 -74
- package/dist/esm/chunks/Chip-o-YG_HAf.js +0 -91
- package/dist/esm/chunks/DivInput-D6ORPrkT.js +0 -202
- package/dist/esm/chunks/DocIcons-CbOX4n8Y.js +0 -39
- package/dist/esm/chunks/Dot-BZcEZbnm.js +0 -78
- package/dist/esm/chunks/DrggablePanel-DWrTjXvf.js +0 -300
- package/dist/esm/chunks/DropDown-BDIvYWI-.js +0 -152
- package/dist/esm/chunks/ErrorSummary-DzDnacH0.js +0 -40
- package/dist/esm/chunks/FileIcon-Cxh-QsYb.js +0 -130
- package/dist/esm/chunks/FileList-CdUgbpYF.js +0 -161
- package/dist/esm/chunks/FlexDiv-CFyndG99.js +0 -101
- package/dist/esm/chunks/Grouper-NJbpaaQG.js +0 -48
- package/dist/esm/chunks/IconButton-3m9ugITV.js +0 -82
- package/dist/esm/chunks/Label-BRon-ejm.js +0 -132
- package/dist/esm/chunks/Logos-DwZP-TR2.js +0 -117
- package/dist/esm/chunks/Overlay-BolsHW9S.js +0 -43
- package/dist/esm/chunks/Pager-BHLyXq9p.js +0 -40
- package/dist/esm/chunks/ProgressIndicator-uI9BZwBB.js +0 -118
- package/dist/esm/chunks/PromptInput-DodTBG82.js +0 -210
- package/dist/esm/chunks/RadioButton-D8otD_Jj.js +0 -63
- package/dist/esm/chunks/RadioButtonList-CtX1j7rO.js +0 -114
- package/dist/esm/chunks/Slider-O6UelMjh.js +0 -283
- package/dist/esm/chunks/Spacer-DbZSG5x3.js +0 -14
- package/dist/esm/chunks/Switch-DjfrSiQz.js +0 -41
- package/dist/esm/chunks/TabBar-C0NgwRa2.js +0 -174
- package/dist/esm/chunks/TextArea-DK0giDGR.js +0 -151
- package/dist/esm/chunks/TextField-CQ4XYYNm.js +0 -246
- package/dist/esm/chunks/Tip-iFECDhwN.js +0 -89
- package/dist/esm/chunks/Toast-ZxMZtbd0.js +0 -156
- package/dist/esm/chunks/UploadArea-C0YHy4Z9.js +0 -147
- package/dist/esm/chunks/_types-RJ7q8S0B.js +0 -712
- package/dist/esm/chunks/sharedTypes-BfZzG1KX.js +0 -9
- package/dist/esm/chunks/style-inject.es-tgCJW-Cu.js +0 -28
- package/dist/esm/chunks/tipStore-nBYJ6tmE.js +0 -17
- package/dist/esm/chunks/toastStore-r3pvNa28.js +0 -17
- package/dist/esm/chunks/tslib.es6-0pkUdtrF.js +0 -45
- package/dist/esm/chunks/utils-CZ1LWeN6.js +0 -121
- package/dist/esm/chunks/windowStore-Cu4W4zJM.js +0 -91
- package/dist/esm/hooks/useDoubleClick.js +0 -24
- package/dist/esm/hooks/useKeyboardShortcuts.js +0 -42
- package/dist/esm/hooks/useLastUpdated.js +0 -51
- package/dist/esm/hooks/useLocalStore.js +0 -50
- package/dist/esm/hooks/useObserveResize.js +0 -54
- package/dist/esm/hooks/useObserveTheme.js +0 -41
- package/dist/esm/hooks/useTheme.js +0 -84
- package/dist/esm/hooks/useToolTip.js +0 -34
- package/dist/esm/hooks/useTrackRenders.js +0 -37
- package/dist/esm/hooks/useWindow.js +0 -84
- package/dist/esm/hooks.js +0 -15
- package/dist/esm/index.js +0 -59
- package/dist/esm/providers/ThemeProvider.js +0 -56
- package/dist/esm/providers.js +0 -8
- package/dist/esm/stores/tip.js +0 -2
- package/dist/esm/stores/toast.js +0 -2
- package/dist/esm/stores/window.js +0 -2
- package/dist/esm/stores.js +0 -4
- package/dist/esm/theme/colors.js +0 -377
- package/dist/esm/theme/corners.js +0 -12
- package/dist/esm/theme/elevations.js +0 -15
- package/dist/esm/theme/themes.js +0 -23
- package/dist/esm/theme/type.js +0 -393
- package/dist/esm/theme.js +0 -5
- package/dist/esm/uikit/Avatar.js +0 -5
- package/dist/esm/uikit/AvatarGroup.js +0 -6
- package/dist/esm/uikit/Badge.js +0 -5
- package/dist/esm/uikit/Button.js +0 -20
- package/dist/esm/uikit/ButtonBar.js +0 -20
- package/dist/esm/uikit/Card.js +0 -15
- package/dist/esm/uikit/CheckBox.js +0 -16
- package/dist/esm/uikit/Chip.js +0 -16
- package/dist/esm/uikit/DivInput.js +0 -7
- package/dist/esm/uikit/DocIcon.js +0 -12
- package/dist/esm/uikit/Dot.js +0 -6
- package/dist/esm/uikit/DraggablePanel.js +0 -15
- package/dist/esm/uikit/DropDown.js +0 -15
- package/dist/esm/uikit/ErrorSummary.js +0 -6
- package/dist/esm/uikit/FileIcon.js +0 -13
- package/dist/esm/uikit/FileList.js +0 -18
- package/dist/esm/uikit/FlexDiv.js +0 -6
- package/dist/esm/uikit/Grouper.js +0 -17
- package/dist/esm/uikit/Icon.js +0 -13
- package/dist/esm/uikit/IconButton.js +0 -19
- package/dist/esm/uikit/Label.js +0 -14
- package/dist/esm/uikit/Logos.js +0 -12
- package/dist/esm/uikit/Overlay.js +0 -6
- package/dist/esm/uikit/Pager.js +0 -6
- package/dist/esm/uikit/Progress.js +0 -14
- package/dist/esm/uikit/PromptInput.js +0 -23
- package/dist/esm/uikit/RadioButton.js +0 -20
- package/dist/esm/uikit/RadioButtonList.js +0 -21
- package/dist/esm/uikit/Slider.js +0 -7
- package/dist/esm/uikit/Spacer.js +0 -4
- package/dist/esm/uikit/Switch.js +0 -6
- package/dist/esm/uikit/TabBar.js +0 -20
- package/dist/esm/uikit/TextArea.js +0 -21
- package/dist/esm/uikit/Textfield.js +0 -22
- package/dist/esm/uikit/Tip.js +0 -7
- package/dist/esm/uikit/Toast.js +0 -16
- package/dist/esm/uikit/UploadArea.js +0 -19
|
@@ -1,712 +0,0 @@
|
|
|
1
|
-
import { _ as __rest } from './tslib.es6-0pkUdtrF.js';
|
|
2
|
-
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
3
|
-
import React, { useMemo } from 'react';
|
|
4
|
-
import { useTheme } from '../hooks/useTheme.js';
|
|
5
|
-
import '../theme/colors.js';
|
|
6
|
-
import '../hooks/useWindow.js';
|
|
7
|
-
import { a as accessibleKeyDown } from './utils-CZ1LWeN6.js';
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Static icon registry created once at module load.
|
|
11
|
-
* Each entry stores only icon line content renderers.
|
|
12
|
-
*/
|
|
13
|
-
const STATIC_ICON_REGISTRY = new Map([
|
|
14
|
-
[
|
|
15
|
-
'task list',
|
|
16
|
-
{
|
|
17
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M11 6L21 6", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsx("path", { d: "M11 12L21 12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsx("path", { d: "M11 18L21 18", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsx("path", { d: "M3 7.39286C3 7.39286 4 8.04466 4.5 9C4.5 9 6 5.25 8 4", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M3 18.3929C3 18.3929 4 19.0447 4.5 20C4.5 20 6 16.25 8 15", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
|
|
18
|
-
},
|
|
19
|
-
],
|
|
20
|
-
[
|
|
21
|
-
'highlight',
|
|
22
|
-
{
|
|
23
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsx("path", { d: "M 20.825 11.376 C 20.713 11.263 20.56 11.199 20.401 11.199 C 20.241 11.199 20.089 11.263 19.976 11.376 L 16.201 15.15 L 9.85 8.799 L 13.626 5.025 C 13.86 4.79 13.86 4.41 13.626 4.176 C 13.391 3.941 13.011 3.942 12.777 4.176 L 9.002 7.951 C 8.629 8.324 8.543 8.897 8.791 9.362 L 7.202 10.951 C 6.734 11.419 6.734 12.179 7.202 12.647 L 7.554 12.999 L 3.178 17.374 C 3.03 17.521 2.969 17.734 3.017 17.937 C 3.065 18.14 3.215 18.303 3.413 18.368 L 8.812 20.168 C 8.95 20.215 9.099 20.209 9.232 20.153 C 9.305 20.123 9.371 20.079 9.427 20.023 L 12.002 17.447 L 12.353 17.799 C 12.822 18.267 13.581 18.267 14.05 17.799 L 15.638 16.211 C 16.104 16.458 16.677 16.372 17.049 15.999 L 20.825 12.224 C 21.06 11.99 21.06 11.61 20.825 11.376 Z M 13.201 16.95 L 8.05 11.799 L 9.602 10.248 L 14.753 15.399 Z", fill: strokeColor })] })),
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
[
|
|
27
|
-
'bold',
|
|
28
|
-
{
|
|
29
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 6C5 4.58579 5 3.87868 5.43934 3.43934C5.87868 3 6.58579 3 8 3H12.5789C15.0206 3 17 5.01472 17 7.5C17 9.98528 15.0206 12 12.5789 12H5V6Z", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M12.4286 12H13.6667C16.0599 12 18 14.0147 18 16.5C18 18.9853 16.0599 21 13.6667 21H8C6.58579 21 5.87868 21 5.43934 20.5607C5 20.1213 5 19.4142 5 18V12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
|
|
30
|
-
},
|
|
31
|
-
],
|
|
32
|
-
[
|
|
33
|
-
'italic',
|
|
34
|
-
{
|
|
35
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M12 4H19", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M8 20L16 4", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M5 20H12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
|
|
36
|
-
},
|
|
37
|
-
],
|
|
38
|
-
[
|
|
39
|
-
'underline',
|
|
40
|
-
{
|
|
41
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M5.5 3V11.5C5.5 15.0899 8.41015 18 12 18C15.5899 18 18.5 15.0899 18.5 11.5V3", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M3 21H21", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" })] })),
|
|
42
|
-
},
|
|
43
|
-
],
|
|
44
|
-
[
|
|
45
|
-
'strike',
|
|
46
|
-
{
|
|
47
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M4 12H20", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M17.5 7.66667C17.5 5.08934 15.0376 3 12 3C8.96243 3 6.5 5.08934 6.5 7.66667C6.5 8.15279 6.55336 8.59783 6.6668 9M6 16.3333C6 18.9107 8.68629 21 12 21C15.3137 21 18 19.6667 18 16.3333C18 13.9404 16.9693 12.5782 14.9079 12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" })] })),
|
|
48
|
-
},
|
|
49
|
-
],
|
|
50
|
-
[
|
|
51
|
-
'link',
|
|
52
|
-
{
|
|
53
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsx("path", { d: "M 12.251 18.425 C 15.169 18.425 17.041 16.923 17.041 14.629 C 17.041 12.8 15.925 11.834 13.323 11.219 L 11.891 10.876 C 10.106 10.445 9.35 9.9 9.35 8.924 C 9.35 7.694 10.562 6.824 12.241 6.824 C 13.753 6.824 14.834 7.509 15.265 8.722 C 15.405 9.056 15.616 9.214 15.968 9.214 C 16.425 9.214 16.706 8.951 16.706 8.511 C 16.706 8.379 16.688 8.239 16.653 8.107 C 16.26 6.507 14.501 5.4 12.242 5.4 C 9.597 5.4 7.69 6.912 7.69 9.039 C 7.69 10.77 8.78 11.781 11.17 12.343 L 12.788 12.73 C 14.616 13.17 15.381 13.767 15.381 14.822 C 15.381 16.087 14.089 17.01 12.252 17.01 C 10.626 17.01 9.404 16.263 8.956 15.015 C 8.798 14.637 8.605 14.47 8.236 14.47 C 7.761 14.47 7.471 14.76 7.471 15.217 C 7.471 15.376 7.497 15.543 7.541 15.71 C 8.007 17.37 9.835 18.425 12.252 18.425 Z", fill: strokeColor }), jsx("path", { d: "M 5.36 11.75 L 19.15 11.75 C 19.352 11.75 19.51 11.592 19.51 11.39 C 19.511 11.294 19.474 11.202 19.406 11.134 C 19.338 11.066 19.246 11.029 19.15 11.03 L 5.36 11.03 C 5.264 11.029 5.172 11.066 5.104 11.134 C 5.037 11.202 4.999 11.294 5 11.39 C 5 11.592 5.158 11.75 5.36 11.75 Z", fill: strokeColor })] })),
|
|
54
|
-
},
|
|
55
|
-
],
|
|
56
|
-
[
|
|
57
|
-
'bullet list',
|
|
58
|
-
{
|
|
59
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M8 5L20 5", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsx("path", { d: "M4 5H4.00898", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M4 12H4.00898", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M4 19H4.00898", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M8 12L20 12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsx("path", { d: "M8 19L20 19", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" })] })),
|
|
60
|
-
},
|
|
61
|
-
],
|
|
62
|
-
[
|
|
63
|
-
'numbered list',
|
|
64
|
-
{
|
|
65
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M11 6L21 6", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsx("path", { d: "M11 12L21 12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsx("path", { d: "M11 18L21 18", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsx("path", { d: "M3 15H4.5C4.77879 15 4.91819 15 5.03411 15.0231C5.51014 15.1177 5.88225 15.4899 5.97694 15.9659C6 16.0818 6 16.2212 6 16.5C6 16.7788 6 16.9182 5.97694 17.0341C5.88225 17.5101 5.51014 17.8823 5.03411 17.9769C4.91819 18 4.77879 18 4.5 18C4.22121 18 4.08181 18 3.96589 18.0231C3.48986 18.1177 3.11775 18.4899 3.02306 18.9659C3 19.0818 3 19.2212 3 19.5V20.4C3 20.6828 3 20.8243 3.08787 20.9121C3.17574 21 3.31716 21 3.6 21H6", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M3 3H4.2C4.36569 3 4.5 3.13431 4.5 3.3V9M4.5 9H3M4.5 9H6", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
|
|
66
|
-
},
|
|
67
|
-
],
|
|
68
|
-
[
|
|
69
|
-
'sink',
|
|
70
|
-
{
|
|
71
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M15 4.5H20", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M15 9.5H18", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M15 14.5H20", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M15 19.5H18", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M11 3V21", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M4 8.5L5.54218 9.74227C6.84739 10.7937 7.5 11.3193 7.5 12C7.5 12.6807 6.84739 13.2063 5.54218 14.2577L4 15.5", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
|
|
72
|
-
},
|
|
73
|
-
],
|
|
74
|
-
[
|
|
75
|
-
'lift',
|
|
76
|
-
{
|
|
77
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M4 4.5H9", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M6 9.5H9", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M4 14.5H9", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M6 19.5H9", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M13 3V21", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M20 8.5L18.4578 9.74227C17.1526 10.7937 16.5 11.3193 16.5 12C16.5 12.6807 17.1526 13.2063 18.4578 14.2577L20 15.5", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
|
|
78
|
-
},
|
|
79
|
-
],
|
|
80
|
-
[
|
|
81
|
-
'code',
|
|
82
|
-
{
|
|
83
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M17 8L18.8398 9.85008C19.6133 10.6279 20 11.0168 20 11.5C20 11.9832 19.6133 12.3721 18.8398 13.1499L17 15", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M7 8L5.16019 9.85008C4.38673 10.6279 4 11.0168 4 11.5C4 11.9832 4.38673 12.3721 5.16019 13.1499L7 15", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M14.5 4L9.5 20", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
|
|
84
|
-
},
|
|
85
|
-
],
|
|
86
|
-
[
|
|
87
|
-
'like',
|
|
88
|
-
{
|
|
89
|
-
line: ({ stroke, strokeColor }) => (jsx("path", { d: "M 13.447 16.354 C 13.167 16.759 12.706 17 12.214 17 L 3.5 17 C 2.672 17 2 16.328 2 15.5 L 2 8.5 C 2 7.672 2.672 7 3.5 7 L 4.343 7 C 4.762 7 5.161 6.825 5.445 6.517 L 9.265 2.379 C 9.883 1.71 11 2.147 11 3.058 L 11 7 L 16 7 C 16.828 7 17.5 7.672 17.5 8.5 L 17.5 10.031 C 17.5 10.336 17.407 10.634 17.233 10.885 Z M 5 6.5 L 5 17", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })),
|
|
90
|
-
},
|
|
91
|
-
],
|
|
92
|
-
[
|
|
93
|
-
'unlike',
|
|
94
|
-
{
|
|
95
|
-
line: ({ stroke, strokeColor }) => (jsx("path", { d: "M 6.053 4.646 C 6.333 4.241 6.794 4 7.286 4 L 16 4 C 16.828 4 17.5 4.672 17.5 5.5 L 17.5 12.5 C 17.5 13.328 16.828 14 16 14 L 15.157 14 C 14.738 14 14.339 14.175 14.055 14.483 L 10.235 18.621 C 9.617 19.29 8.5 18.853 8.5 17.942 L 8.5 14 L 3.5 14 C 2.672 14 2 13.328 2 12.5 L 2 10.969 C 2 10.664 2.093 10.366 2.267 10.115 Z M 14.5 14.5 L 14.5 4", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })),
|
|
96
|
-
},
|
|
97
|
-
],
|
|
98
|
-
[
|
|
99
|
-
'stop',
|
|
100
|
-
{
|
|
101
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 3 7.5 C 3 5.015 5.015 3 7.5 3 L 12.5 3 C 14.985 3 17 5.015 17 7.5 L 17 12.5 C 17 14.985 14.985 17 12.5 17 L 7.5 17 C 5.015 17 3 14.985 3 12.5 Z", fill: strokeColor })),
|
|
102
|
-
},
|
|
103
|
-
],
|
|
104
|
-
[
|
|
105
|
-
'copy',
|
|
106
|
-
{
|
|
107
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsx("path", { d: "M 5 15 L 3.5 15 C 2.672 15 2 14.328 2 13.5 L 2 3.5 C 2 2.672 2.672 2 3.5 2 L 13.5 2 C 14.328 2 15 2.672 15 3.5 L 15 5", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round", strokeMiterlimit: '10' }), jsx("path", { d: "M 5 6.5 C 5 5.672 5.672 5 6.5 5 L 16.5 5 C 17.328 5 18 5.672 18 6.5 L 18 16.5 C 18 17.328 17.328 18 16.5 18 L 6.5 18 C 5.672 18 5 17.328 5 16.5 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round", strokeMiterlimit: '10' })] })),
|
|
108
|
-
},
|
|
109
|
-
],
|
|
110
|
-
[
|
|
111
|
-
'font smaller',
|
|
112
|
-
{
|
|
113
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsx("path", { d: "M 9.081 5 L 10.746 5 L 14.321 14.824 L 14.321 15.015 L 12.833 15.015 L 11.919 12.232 L 7.854 12.232 L 6.899 15.015 L 5.5 15.015 L 5.5 14.824 Z M 11.503 11.017 L 9.913 6.542 L 9.858 6.542 L 8.282 11.017 L 11.502 11.017 Z", fill: strokeColor })] })),
|
|
114
|
-
},
|
|
115
|
-
],
|
|
116
|
-
[
|
|
117
|
-
'font larger',
|
|
118
|
-
{
|
|
119
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsx("path", { d: "M 8.872 3 L 11.137 3 L 16 16.733 L 16 17 L 13.976 17 L 12.733 13.109 L 7.202 13.109 L 5.903 17 L 4 17 L 4 16.733 Z M 12.167 11.411 L 10.004 5.155 L 9.929 5.155 L 7.785 11.411 L 12.166 11.411 Z", fill: strokeColor })] })),
|
|
120
|
-
},
|
|
121
|
-
],
|
|
122
|
-
[
|
|
123
|
-
'bar chart',
|
|
124
|
-
{
|
|
125
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsx("path", { d: "M 2 2.5 L 2 17 L 18.5 17", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round" }), jsx("path", { d: "M 6.5 9 L 6.5 14", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 10.451 5 L 10.451 14", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 14.5 7 L 14.5 14", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
|
|
126
|
-
},
|
|
127
|
-
],
|
|
128
|
-
[
|
|
129
|
-
'briefcase',
|
|
130
|
-
{
|
|
131
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 5 12 C 5 12.552 5.448 13 6 13 C 6.552 13 7 12.552 7 12 C 7 11.448 6.552 11 6 11 C 5.448 11 5 11.448 5 12 Z M 14 13 C 13.448 13 13 12.552 13 12 C 13 11.448 13.448 11 14 11 C 14.552 11 15 11.448 15 12 C 15 12.552 14.552 13 14 13 Z", fill: strokeColor }), jsx("path", { d: "M 5.25 5 L 5.25 3.5 C 5.25 2.257 6.257 1.25 7.5 1.25 L 12.5 1.25 C 13.743 1.25 14.75 2.257 14.75 3.5 L 14.75 5 L 17.5 5 C 18.328 5 19 5.672 19 6.5 L 19 15.5 C 19 16.328 18.328 17 17.5 17 L 2.5 17 C 1.672 17 1 16.328 1 15.5 L 1 6.5 C 1 5.672 1.672 5 2.5 5 Z M 6.75 5 L 13.25 5 L 13.25 3.5 C 13.25 3.086 12.914 2.75 12.5 2.75 L 7.5 2.75 C 7.086 2.75 6.75 3.086 6.75 3.5 Z M 2.5 6.5 L 2.5 15.5 L 17.5 15.5 L 17.5 6.5 L 14.75 6.5 L 14.75 9 L 13.25 9 L 13.25 6.5 L 6.75 6.5 L 6.75 9 L 5.25 9 L 5.25 6.5 Z", fill: strokeColor })] })),
|
|
132
|
-
},
|
|
133
|
-
],
|
|
134
|
-
[
|
|
135
|
-
'globe location',
|
|
136
|
-
{
|
|
137
|
-
line: ({ stroke, strokeColor }) => (jsxs("g", { transform: "translate(2 2.5)", children: [jsx("path", { d: "M 7.619 15.238 C 3.411 15.238 0 11.827 0 7.619 C -0.003 5.575 0.819 3.616 2.278 2.185 M 2.921 13.601 C 2.663 12.725 3.136 12.29 3.812 12.007 C 4.85 11.57 4.85 11.57 5.63 10.534 C 6.412 9.497 7.393 9.476 9.239 11.547 C 10.068 12.479 11.796 11.666 12.728 13.066 M 7.619 15.238 C 9.503 15.238 11.228 14.554 12.558 13.421 C 13.222 12.855 13.789 12.176 14.227 11.414 C 14.446 11.033 14.634 10.631 14.785 10.213 C 14.861 10.003 14.928 9.79 14.985 9.572 M 1.785 2.916 C 2.6 2.938 3.261 3.5 3.132 4.374 C 2.921 5.801 4.248 5.459 4.199 6.75 C 4.167 7.611 3.509 8.55 1.892 8.936 C 1.041 9.139 0.559 9.279 0.176 9.806 M 6.874 0.036 C 6.628 0.06 6.383 0.095 6.142 0.143 C 5.658 0.238 5.187 0.38 4.733 0.566 C 3.825 0.937 2.99 1.484 2.278 2.185", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round", strokeDasharray: "" }), jsx("path", { d: "M 12.19 0 C 14.252 0 16 1.69 16 3.741 C 16 5.823 14.224 7.285 12.583 8.279 C 12.339 8.415 12.042 8.415 11.798 8.279 C 10.16 7.276 8.381 5.831 8.381 3.741 C 8.381 1.691 10.129 0 12.19 0 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round", strokeDasharray: "" }), jsx("path", { d: "M 12.952 3.81 C 12.952 4.23 12.611 4.571 12.19 4.571 C 11.77 4.571 11.429 4.23 11.429 3.81 C 11.429 3.389 11.77 3.048 12.19 3.048 C 12.611 3.048 12.952 3.389 12.952 3.81 Z", fill: strokeColor })] })),
|
|
138
|
-
},
|
|
139
|
-
],
|
|
140
|
-
[
|
|
141
|
-
'focus',
|
|
142
|
-
{
|
|
143
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsx("path", { d: "M 9.75 2.641 C 13.666 2.641 16.859 5.834 16.859 9.75 C 16.859 13.666 13.666 16.859 9.75 16.859 C 5.834 16.859 2.641 13.666 2.641 9.75 C 2.641 5.834 5.834 2.641 9.75 2.641 M 9.75 1 C 4.916 1 1 4.916 1 9.75 C 1 14.584 4.916 18.5 9.75 18.5 C 14.584 18.5 18.5 14.584 18.5 9.75 C 18.5 4.916 14.584 1 9.75 1 Z", fill: strokeColor }), jsx("path", { d: "M 5.492 12.657 L 6.03 11.706 L 13.892 16.157 L 13.353 17.109 Z", fill: strokeColor }), jsx("path", { d: "M 5.112 7.527 L 6.206 7.519 L 6.282 16.553 L 5.188 16.562 Z", fill: strokeColor }), jsx("path", { d: "M 1.573 9.2 L 9.36 4.62 L 9.914 5.563 L 2.127 10.144 Z", fill: strokeColor }), jsx("path", { d: "M 5.605 3.344 L 6.143 2.392 L 14.005 6.844 L 13.465 7.795 Z", fill: strokeColor }), jsx("path", { d: "M 13.223 2.953 L 14.316 2.945 L 14.392 11.979 L 13.298 11.988 Z", fill: strokeColor }), jsx("path", { d: "M 9.579 13.946 L 17.366 9.365 L 17.92 10.308 L 10.133 14.888 Z", fill: strokeColor })] })),
|
|
144
|
-
},
|
|
145
|
-
],
|
|
146
|
-
[
|
|
147
|
-
'chart arrow',
|
|
148
|
-
{
|
|
149
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsxs("g", { transform: "translate(3.5 6)", children: [jsx("path", { d: "M 0 8 L 4.5 3.5 L 7.5 6 L 12.5 0.5", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "square", strokeMiterlimit: "10", strokeDasharray: "" }), jsx("path", { d: "M 0.876 5.957 L 3.387 2.87 L 0 0", transform: "translate(10.018 -1.785) rotate(-40 1.694 2.978)", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "square", strokeMiterlimit: "10", strokeDasharray: "" })] })] })),
|
|
150
|
-
},
|
|
151
|
-
],
|
|
152
|
-
[
|
|
153
|
-
'document editor',
|
|
154
|
-
{
|
|
155
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsxs("g", { children: [jsxs("defs", { children: [jsx("path", { d: "M 3 3 C 3 1.895 3.895 1 5 1 L 15 1 C 16.105 1 17 1.895 17 3 L 17 17 C 17 18.105 16.105 19 15 19 L 5 19 C 3.895 19 3 18.105 3 17 Z", id: "a1000z" }), jsx("clipPath", { id: "a1001z", children: jsx("use", { xlinkHref: "#a1000z" }) })] }), jsx("use", { xlinkHref: "#a1000z", fill: "transparent", clipPath: "url(#a1001z)", strokeWidth: "3.1", stroke: strokeColor })] }), jsxs("g", { transform: "translate(7 9.25)", children: [jsx("path", { d: "M 0 1.5 L 4.5 1.5 L 4.5 0 L 0 0 Z", fill: strokeColor }), jsx("path", { d: "M 6 5.5 L 0 5.5 L 0 4 L 6 4 Z", fill: strokeColor })] })] })),
|
|
156
|
-
},
|
|
157
|
-
],
|
|
158
|
-
[
|
|
159
|
-
'settings',
|
|
160
|
-
{
|
|
161
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 2 5.25 L 4.07 5.25 C 4.024 5.493 4 5.744 4 6 C 4 6.256 4.024 6.507 4.07 6.75 L 2 6.75 Z M 18 5.25 L 18 6.75 L 11.93 6.75 C 11.976 6.507 12 6.256 12 6 C 12 5.744 11.976 5.493 11.93 5.25 Z", fill: strokeColor }), jsx("path", { d: "M 2 13.25 L 8.07 13.25 C 8.024 13.493 8 13.744 8 14 C 8 14.256 8.024 14.507 8.07 14.75 L 2 14.75 Z M 18 13.25 L 18 14.75 L 15.93 14.75 C 15.976 14.507 16 14.256 16 14 C 16 13.744 15.976 13.493 15.93 13.25 Z", fill: strokeColor }), jsx("path", { d: "M 12 12 C 12.966 12 13.75 12.784 13.75 13.75 C 13.75 14.716 12.966 15.5 12 15.5 C 11.034 15.5 10.25 14.716 10.25 13.75 C 10.25 12.784 11.034 12 12 12 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" }), jsx("path", { d: "M 8 4.25 C 8.966 4.25 9.75 5.034 9.75 6 C 9.75 6.966 8.966 7.75 8 7.75 C 7.034 7.75 6.25 6.966 6.25 6 C 6.25 5.034 7.034 4.25 8 4.25 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })] })),
|
|
162
|
-
},
|
|
163
|
-
],
|
|
164
|
-
[
|
|
165
|
-
'light bulb',
|
|
166
|
-
{
|
|
167
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 5.05 13.95 C 3.784 12.683 3 10.933 3 9 C 3 7.067 3.784 5.317 5.05 4.05 C 6.317 2.784 8.067 2 10 2 C 11.933 2 13.683 2.784 14.95 4.05 C 16.216 5.317 17 7.067 17 9 C 17 10.933 16.216 12.683 14.95 13.95", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 10 10 C 10.552 10 11 9.552 11 9 C 11 8.448 10.552 8 10 8 C 9.448 8 9 8.448 9 9 C 9 9.552 9.448 10 10 10 Z", fill: strokeColor }), jsx("path", { d: "M 6.5 15 L 13.5 15", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 7.5 18 L 12.5 18", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
|
|
168
|
-
},
|
|
169
|
-
],
|
|
170
|
-
[
|
|
171
|
-
'issue',
|
|
172
|
-
{
|
|
173
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 10 11.667 L 10.008 11.667", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M 10 9.167 L 10 5.833", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { d: "M 2 4.503 C 2 3.581 2.748 2.833 3.67 2.833 L 16.33 2.833 C 17.252 2.833 18 3.581 18 4.503 L 18 13.163 C 18 14.086 17.252 14.833 16.33 14.833 L 3.67 14.833 C 2.748 14.833 2 14.086 2 13.163 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 3.383 18.336 C 5.417 17.476 7.653 17 10 17 C 12.347 17 14.583 17.476 16.617 18.336", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
|
|
174
|
-
},
|
|
175
|
-
],
|
|
176
|
-
[
|
|
177
|
-
'chart',
|
|
178
|
-
{
|
|
179
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsx("path", { d: "M 5 12 L 9 8 L 12.5 11.5 L 16.5 7.5", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "square", strokeMiterlimit: "10", strokeDasharray: "" }), jsx("path", { d: "M 2 2.5 L 2 17 L 18.5 17", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round" })] })),
|
|
180
|
-
},
|
|
181
|
-
],
|
|
182
|
-
[
|
|
183
|
-
'chat',
|
|
184
|
-
{
|
|
185
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 17.75 5 C 17.75 2.929 16.071 1.25 14 1.25 L 6 1.25 C 3.929 1.25 2.25 2.929 2.25 5 L 2.25 19 L 3.75 19 C 3.75 17.757 4.757 16.75 6 16.75 L 14 16.75 C 16.071 16.75 17.75 15.071 17.75 13 Z M 3.75 16 L 3.75 5 C 3.75 3.757 4.757 2.75 6 2.75 L 14 2.75 C 15.243 2.75 16.25 3.757 16.25 5 L 16.25 13 C 16.25 14.243 15.243 15.25 14 15.25 L 6 15.25 C 5.156 15.25 4.377 15.529 3.75 16 Z", fill: strokeColor })),
|
|
186
|
-
},
|
|
187
|
-
],
|
|
188
|
-
[
|
|
189
|
-
'exclamation',
|
|
190
|
-
{
|
|
191
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsxs("g", { transform: "translate(8.75 4)", children: [jsx("path", { d: "M 2.471 7.765 L 2.471 0 L 0.353 0 L 0.353 7.765 Z", fill: strokeColor }), jsx("path", { d: "M 2.824 10.588 C 2.824 11.368 2.191 12 1.412 12 C 0.632 12 0 11.368 0 10.588 C 0 9.809 0.632 9.176 1.412 9.176 C 2.191 9.176 2.824 9.809 2.824 10.588 Z", fill: strokeColor })] })] })),
|
|
192
|
-
},
|
|
193
|
-
],
|
|
194
|
-
[
|
|
195
|
-
'undo',
|
|
196
|
-
{
|
|
197
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 13.5 2 L 15.5 2 L 11.5 2 L 11.5 6", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 18 10 C 18 14.418 14.418 18 10 18 C 5.582 18 2 14.418 2 10 C 2 8.543 2.39 7.177 3.07 6 L 4.876 6 C 4.014 7.103 3.5 8.491 3.5 10 C 3.5 13.59 6.41 16.5 10 16.5 C 13.59 16.5 16.5 13.59 16.5 10 C 16.5 7.108 14.611 4.657 12 3.813 L 12 2.252 C 15.45 3.14 18 6.272 18 10 Z", fill: strokeColor }), jsx("path", { d: "M 11 10 C 11 10.552 10.552 11 10 11 C 9.448 11 9 10.552 9 10 C 9 9.448 9.448 9 10 9 C 10.552 9 11 9.448 11 10 Z", fill: strokeColor })] })),
|
|
198
|
-
},
|
|
199
|
-
],
|
|
200
|
-
[
|
|
201
|
-
'character beam',
|
|
202
|
-
{
|
|
203
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsxs("g", { transform: "translate(2 3.5)", children: [jsx("path", { d: "M 3.987 1.4 L 5.841 1.4 L 9.821 12.338 L 9.821 12.55 L 8.165 12.55 L 7.147 9.452 L 2.621 9.452 L 1.558 12.55 L 0 12.55 L 0 12.338 Z M 6.684 8.099 L 4.913 3.116 L 4.852 3.116 L 3.098 8.099 L 6.683 8.099 Z", fill: strokeColor }), jsx("path", { d: "M 10.733 0 L 16.333 0 M 10.733 14 L 16.333 14 M 13.533 0 L 13.533 14", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })] })),
|
|
204
|
-
},
|
|
205
|
-
],
|
|
206
|
-
[
|
|
207
|
-
'edit',
|
|
208
|
-
{
|
|
209
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.0272 0.966797L14.5303 1.46995L16.5303 3.46995L17.0893 4.02893L16.5017 4.55775L6.50172 13.5577L6.2878 13.7503H6H4H3.25V13.0003V11.0003V10.6663L3.49828 10.4428L13.4983 1.44281L14.0272 0.966797ZM4.75 11.3343V12.2503H5.7122L14.9107 3.97163L13.9728 3.03376L4.75 11.3343ZM17 16.7503H5V15.2503H17V16.7503ZM2 17.0003C2.55228 17.0003 3 16.5526 3 16.0003C3 15.448 2.55228 15.0003 2 15.0003C1.44772 15.0003 1 15.448 1 16.0003C1 16.5526 1.44772 17.0003 2 17.0003Z", fill: strokeColor })),
|
|
210
|
-
},
|
|
211
|
-
],
|
|
212
|
-
[
|
|
213
|
-
'compliance check',
|
|
214
|
-
{
|
|
215
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M3 3.313a1.5 1.5 0 0 1 1.302-1.487L10.5 1l5.228.804A1.5 1.5 0 0 1 17 3.287v10.875a1.5 1.5 0 0 1-.714 1.277L10.5 19l-6.706-3.576A1.5 1.5 0 0 1 3 14.1V3.313Z", stroke: strokeColor, strokeWidth: stroke }), jsx("path", { d: "M7.385 9.25a4.48 4.48 0 0 0 2.865-2.865 4.48 4.48 0 0 0 2.865 2.865 4.48 4.48 0 0 0-2.865 2.865A4.48 4.48 0 0 0 7.385 9.25Z", stroke: strokeColor, strokeWidth: stroke })] })),
|
|
216
|
-
},
|
|
217
|
-
],
|
|
218
|
-
[
|
|
219
|
-
'text document',
|
|
220
|
-
{
|
|
221
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 12.5 5.5 L 12.5 2.5 L 4.5 2.5 L 4.5 17.5 L 15.5 17.5 L 15.5 5.5 Z M 15.5 19 L 4.5 19 C 3.672 19 3 18.328 3 17.5 L 3 2.5 C 3 1.672 3.672 1 4.5 1 L 12.5 1 C 13.328 1 14 1.672 14 2.5 L 14 4 L 15.5 4 C 16.328 4 17 4.672 17 5.5 L 17 17.5 C 17 18.328 16.328 19 15.5 19 Z M 14 14.75 L 6 14.75 L 6 13.25 L 14 13.25 Z M 6 10.75 L 12 10.75 L 12 9.25 L 6 9.25 Z", fill: strokeColor })),
|
|
222
|
-
},
|
|
223
|
-
],
|
|
224
|
-
[
|
|
225
|
-
'mail',
|
|
226
|
-
{
|
|
227
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 2 5 C 2 4.448 2.448 4 3 4 L 17 4 C 17.552 4 18 4.448 18 5 L 18 15 C 18 15.552 17.552 16 17 16 L 3 16 C 2.448 16 2 15.552 2 15 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 15.5 8 C 15.5 8.552 15.052 9 14.5 9 C 13.948 9 13.5 8.552 13.5 8 C 13.5 7.448 13.948 7 14.5 7 C 15.052 7 15.5 7.448 15.5 8 Z", fill: strokeColor }), jsx("path", { d: "M 11.5 8 L 4.5 8", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 9.75 11 L 4.5 11", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
|
|
228
|
-
},
|
|
229
|
-
],
|
|
230
|
-
[
|
|
231
|
-
'concise',
|
|
232
|
-
{
|
|
233
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 18 7 L 2 7 L 2 8.5 L 18 8.5 Z M 14 12 L 2 12 L 2 13.5 L 14 13.5 Z", fill: strokeColor })),
|
|
234
|
-
},
|
|
235
|
-
],
|
|
236
|
-
[
|
|
237
|
-
'moderate',
|
|
238
|
-
{
|
|
239
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 2 4 L 14 4 L 14 5.5 L 2 5.5 Z M 2 9 L 18 9 L 18 10.5 L 2 10.5 Z M 10 14 L 2 14 L 2 15.5 L 10 15.5 Z", fill: strokeColor })),
|
|
240
|
-
},
|
|
241
|
-
],
|
|
242
|
-
[
|
|
243
|
-
'expanded',
|
|
244
|
-
{
|
|
245
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 2 2 L 14 2 L 14 3.5 L 2 3.5 Z M 18 7 L 2 7 L 2 8.5 L 18 8.5 Z M 16 12 L 2 12 L 2 13.5 L 16 13.5 Z M 10 17 L 2 17 L 2 18.5 L 10 18.5 Z", fill: strokeColor })),
|
|
246
|
-
},
|
|
247
|
-
],
|
|
248
|
-
[
|
|
249
|
-
'open circle',
|
|
250
|
-
{
|
|
251
|
-
line: ({ stroke, strokeColor }) => (jsx("path", { d: "M 17.371 6.886 C 17.776 7.843 18 8.895 18 10 C 18 14.418 14.418 18 10 18 C 5.582 18 2 14.418 2 10 C 2 5.582 5.582 2 10 2", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })),
|
|
252
|
-
},
|
|
253
|
-
],
|
|
254
|
-
[
|
|
255
|
-
'view',
|
|
256
|
-
{
|
|
257
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsx("path", { d: "M 10 2.75 C 5.996 2.75 2.75 5.996 2.75 10 C 2.75 14.004 5.996 17.25 10 17.25 C 14.004 17.25 17.25 14.004 17.25 10 C 17.25 5.996 14.004 2.75 10 2.75 Z M 1.25 10 C 1.25 5.168 5.168 1.25 10 1.25 C 14.832 1.25 18.75 5.168 18.75 10 C 18.75 14.832 14.832 18.75 10 18.75 C 5.168 18.75 1.25 14.832 1.25 10 Z", fill: strokeColor }), jsx("path", { d: "M 11 10 C 11 10.552 10.552 11 10 11 C 9.448 11 9 10.552 9 10 C 9 9.448 9.448 9 10 9 C 10.552 9 11 9.448 11 10 Z", fill: strokeColor })] })),
|
|
258
|
-
lineOn: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsx("path", { d: "M 10 2.75 C 5.996 2.75 2.75 5.996 2.75 10 C 2.75 14.004 5.996 17.25 10 17.25 C 14.004 17.25 17.25 14.004 17.25 10 C 17.25 5.996 14.004 2.75 10 2.75 Z M 1.25 10 C 1.25 5.168 5.168 1.25 10 1.25 C 14.832 1.25 18.75 5.168 18.75 10 C 18.75 14.832 14.832 18.75 10 18.75 C 5.168 18.75 1.25 14.832 1.25 10 Z", fill: strokeColor })] })),
|
|
259
|
-
},
|
|
260
|
-
],
|
|
261
|
-
[
|
|
262
|
-
'apple',
|
|
263
|
-
{
|
|
264
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 9.643 5.355 C 10.635 5.355 11.505 4.967 12.253 4.19 C 13.001 3.414 13.376 2.511 13.376 1.482 C 13.376 1.369 13.367 1.208 13.349 1 C 13.218 1.018 13.12 1.033 13.055 1.045 C 12.14 1.176 11.336 1.625 10.641 2.392 C 9.946 3.16 9.599 3.981 9.599 4.855 C 9.599 4.956 9.613 5.123 9.643 5.355 Z M 13.197 19 C 13.904 19 14.685 18.515 15.54 17.545 C 16.395 16.576 17.049 15.436 17.5 14.127 C 15.819 13.259 14.979 12.012 14.979 10.388 C 14.979 9.032 15.659 7.872 17.019 6.908 C 16.075 5.724 14.828 5.132 13.278 5.132 C 12.624 5.132 12.027 5.23 11.487 5.426 L 11.149 5.551 L 10.694 5.73 C 10.397 5.843 10.127 5.899 9.884 5.899 C 9.694 5.899 9.444 5.834 9.135 5.703 L 8.788 5.56 L 8.458 5.426 C 7.977 5.224 7.461 5.123 6.908 5.123 C 5.43 5.123 4.242 5.623 3.345 6.622 C 2.448 7.622 2 8.94 2 10.576 C 2 12.878 2.719 15.005 4.156 16.956 C 5.153 18.319 6.065 19 6.891 19 C 7.241 19 7.588 18.932 7.933 18.795 L 8.369 18.616 L 8.717 18.491 C 9.204 18.319 9.652 18.233 10.062 18.233 C 10.495 18.233 10.994 18.343 11.558 18.563 L 11.834 18.67 C 12.411 18.89 12.865 19 13.197 19 Z", fill: strokeColor })),
|
|
265
|
-
},
|
|
266
|
-
],
|
|
267
|
-
[
|
|
268
|
-
'linkedin',
|
|
269
|
-
{
|
|
270
|
-
line: (_props) => (jsx("path", { d: "M 16.4 16.259 L 13.766 16.259 L 13.766 12.133 C 13.766 11.15 13.748 9.883 12.396 9.883 C 11.023 9.883 10.813 10.955 10.813 12.061 L 10.813 16.258 L 8.18 16.258 L 8.18 7.775 L 10.709 7.775 L 10.709 8.933 L 10.743 8.933 C 11.259 8.052 12.218 7.525 13.239 7.563 C 15.909 7.563 16.401 9.319 16.401 11.603 L 16.4 16.258 Z M 5.208 6.615 C 4.652 6.63 4.132 6.343 3.849 5.863 C 3.567 5.384 3.567 4.79 3.849 4.311 C 4.132 3.832 4.652 3.544 5.208 3.559 C 6.036 3.581 6.695 4.259 6.695 5.087 C 6.695 5.915 6.036 6.593 5.208 6.615 Z M 6.524 16.259 L 3.888 16.259 L 3.888 7.775 L 6.524 7.775 Z M 17.713 1.111 L 2.564 1.111 C 1.848 1.103 1.261 1.677 1.252 2.393 L 1.252 17.604 C 1.256 17.948 1.396 18.277 1.642 18.518 C 1.888 18.759 2.219 18.892 2.563 18.889 L 17.713 18.889 C 18.431 18.898 19.02 18.324 19.03 17.606 L 19.03 2.392 C 19.02 1.675 18.43 1.102 17.713 1.111", fill: "rgb(10, 102, 194)" })),
|
|
271
|
-
},
|
|
272
|
-
],
|
|
273
|
-
[
|
|
274
|
-
'google',
|
|
275
|
-
{
|
|
276
|
-
line: (_props) => (jsxs("g", { transform: "translate(1.05 1.197)", children: [jsx("path", { d: "M 8.995 3.569 C 10.269 3.549 11.524 4.039 12.446 4.922 L 15.014 2.334 C 13.387 0.804 11.23 -0.019 8.995 0 C 5.583 0 2.485 1.922 0.956 4.961 L 3.936 7.275 C 4.662 5.137 6.642 3.569 8.995 3.569 Z", fill: "rgb(229,67,53)" }), jsx("path", { d: "M 3.936 10.726 C 3.564 9.608 3.564 8.392 3.936 7.275 L 0.956 4.961 C -0.319 7.51 -0.319 10.51 0.956 13.039 Z", fill: "rgb(246,183,4)" }), jsx("path", { d: "M 8.995 18 C 11.426 18 13.465 17.196 14.956 15.824 L 12.054 13.588 C 11.25 14.137 10.211 14.451 8.995 14.451 C 6.642 14.451 4.662 12.863 3.936 10.745 L 0.956 13.039 C 2.485 16.078 5.583 18 8.995 18 Z", fill: "rgb(52,163,83)" }), jsx("path", { d: "M 17.642 9.216 C 17.642 8.608 17.583 7.981 17.485 7.392 L 8.995 7.392 L 8.995 10.863 L 13.858 10.863 C 13.662 11.981 13.014 12.961 12.054 13.588 L 14.956 15.843 C 16.661 14.255 17.642 11.941 17.642 9.216 Z", fill: "rgb(66,128,239)" })] })),
|
|
277
|
-
},
|
|
278
|
-
],
|
|
279
|
-
[
|
|
280
|
-
'dollar',
|
|
281
|
-
{
|
|
282
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z M 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 Z", fill: strokeColor }), jsx("path", { d: "M 10 6.75 C 10.69 6.75 11.25 7.31 11.25 8 L 12.75 8 C 12.75 6.77 11.933 5.689 10.75 5.354 L 10.75 4.5 L 9.25 4.5 L 9.25 5.354 C 7.932 5.731 7.093 7.02 7.281 8.378 C 7.47 9.735 8.629 10.747 10 10.75 C 10.69 10.75 11.25 11.31 11.25 12 C 11.25 12.69 10.69 13.25 10 13.25 C 9.31 13.25 8.75 12.69 8.75 12 L 7.25 12 C 7.25 13.23 8.067 14.311 9.25 14.646 L 9.25 15.5 L 10.75 15.5 L 10.75 14.646 C 12.068 14.269 12.907 12.98 12.719 11.622 C 12.53 10.265 11.371 9.253 10 9.25 C 9.31 9.25 8.75 8.69 8.75 8 C 8.75 7.31 9.31 6.75 10 6.75 Z", fill: strokeColor })] })),
|
|
283
|
-
},
|
|
284
|
-
],
|
|
285
|
-
[
|
|
286
|
-
'trash bin',
|
|
287
|
-
{
|
|
288
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 17 0.5 L 3 0.5 L 3 2 L 17 2 Z M 5.5 16.75 L 14.5 16.75 L 14.5 5.75 L 5.5 5.75 Z M 14.8 18.25 L 5.2 18.25 C 4.537 18.25 4 17.713 4 17.05 L 4 5.45 C 4 4.787 4.537 4.25 5.2 4.25 L 14.8 4.25 C 15.463 4.25 16 4.787 16 5.45 L 16 17.05 C 16 17.713 15.463 18.25 14.8 18.25 Z M 7.25 14.25 L 7.25 8.25 L 8.75 8.25 L 8.75 14.25 Z M 11.25 8.25 L 11.25 14.25 L 12.75 14.25 L 12.75 8.25 Z", fill: strokeColor })),
|
|
289
|
-
},
|
|
290
|
-
],
|
|
291
|
-
[
|
|
292
|
-
'recent chats',
|
|
293
|
-
{
|
|
294
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 2 4.25 L 10 4.25 L 10 5.75 L 2 5.75 Z M 18 9.25 L 18 10.75 L 2 10.75 L 2 9.25 Z M 14 14.25 L 2 14.25 L 2 15.75 L 14 15.75 Z", fill: strokeColor })),
|
|
295
|
-
},
|
|
296
|
-
],
|
|
297
|
-
[
|
|
298
|
-
'refresh',
|
|
299
|
-
{
|
|
300
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 9 1.25 L 5 1.25 L 5 2.75 L 7.255 2.75 C 4.108 3.943 2.089 7.03 2.259 10.391 C 2.429 13.753 4.748 16.621 8 17.49 L 8 15.923 C 5.415 15.048 3.695 12.598 3.753 9.869 C 3.81 7.14 5.63 4.764 8.25 3.998 L 8.25 6 L 9.75 6 L 9.75 1.25 Z M 12.745 17.25 C 15.892 16.057 17.911 12.97 17.741 9.609 C 17.571 6.247 15.252 3.379 12 2.51 L 12 4.077 C 14.585 4.952 16.305 7.402 16.247 10.131 C 16.19 12.86 14.37 15.236 11.75 16.002 L 11.75 14 L 10.25 14 L 10.25 18.75 L 15 18.75 L 15 17.25 Z M 11 10 C 11 10.552 10.552 11 10 11 C 9.448 11 9 10.552 9 10 C 9 9.448 9.448 9 10 9 C 10.552 9 11 9.448 11 10 Z", fill: strokeColor })),
|
|
301
|
-
},
|
|
302
|
-
],
|
|
303
|
-
[
|
|
304
|
-
'document',
|
|
305
|
-
{
|
|
306
|
-
line: ({ stroke, strokeColor }) => (jsx("path", { d: "M 13.25 4 L 13.25 4.75 L 15.5 4.75 C 15.914 4.75 16.25 5.086 16.25 5.5 L 16.25 17.5 C 16.25 17.914 15.914 18.25 15.5 18.25 L 4.5 18.25 C 4.086 18.25 3.75 17.914 3.75 17.5 L 3.75 2.5 C 3.75 2.086 4.086 1.75 4.5 1.75 L 12.5 1.75 C 12.914 1.75 13.25 2.086 13.25 2.5 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })),
|
|
307
|
-
},
|
|
308
|
-
],
|
|
309
|
-
[
|
|
310
|
-
'navigate',
|
|
311
|
-
{
|
|
312
|
-
line: ({ stroke, strokeColor }) => (jsxs("g", { transform: "translate(2 4)", children: [jsx("path", { d: "M 0 0 L 16 0 L 16 11.207 L 0 11.207 Z", fill: "transparent" }), jsx("path", { d: "M 14.113 4.78 L 6.176 4.78 C 3.227 4.78 0.838 7.28 0.838 10.369 L 0.838 11.179", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" }), jsx("path", { d: "M 10.62 8.972 L 14.81 4.78 L 10.62 0.588", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })] })),
|
|
313
|
-
},
|
|
314
|
-
],
|
|
315
|
-
[
|
|
316
|
-
'arrow right',
|
|
317
|
-
{
|
|
318
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 10.53 3.469 L 16.53 9.469 L 17.06 9.999 L 16.53 10.529 L 10.53 16.529 L 9.47 15.469 L 14.19 10.749 L 4 10.749 L 4 9.249 L 14.19 9.249 L 9.47 4.53 L 10.53 3.47 Z", fill: strokeColor })),
|
|
319
|
-
},
|
|
320
|
-
],
|
|
321
|
-
[
|
|
322
|
-
'arrow left',
|
|
323
|
-
{
|
|
324
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 9.47 3.469 L 3.47 9.469 L 2.94 9.999 L 3.47 10.529 L 9.47 16.529 L 10.53 15.469 L 5.81 10.749 L 16 10.749 L 16 9.249 L 5.81 9.249 L 10.53 4.529 Z", fill: strokeColor })),
|
|
325
|
-
},
|
|
326
|
-
],
|
|
327
|
-
[
|
|
328
|
-
'',
|
|
329
|
-
{
|
|
330
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 10.53 3.469 L 16.53 9.469 L 17.06 9.999 L 16.53 10.529 L 10.53 16.529 L 9.47 15.469 L 14.19 10.749 L 4 10.749 L 4 9.249 L 14.19 9.249 L 9.47 4.53 L 10.53 3.47 Z", fill: strokeColor })),
|
|
331
|
-
},
|
|
332
|
-
],
|
|
333
|
-
[
|
|
334
|
-
'arrow up',
|
|
335
|
-
{
|
|
336
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 16.53 9.47 L 10.53 3.47 L 10 2.94 L 9.469 3.47 L 3.469 9.47 L 4.529 10.53 L 9.249 5.81 L 9.249 16 L 10.749 16 L 10.749 5.81 L 15.469 10.53 L 16.529 9.47 Z", fill: strokeColor })),
|
|
337
|
-
},
|
|
338
|
-
],
|
|
339
|
-
[
|
|
340
|
-
'notification',
|
|
341
|
-
{
|
|
342
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 1 3.5 C 1 2.119 2.119 1 3.5 1 L 16.5 1 C 17.881 1 19 2.119 19 3.5 L 19 16.5 C 19 17.881 17.881 19 16.5 19 L 3.5 19 C 2.119 19 1 17.881 1 16.5 Z", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 14 12 L 6 12", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsx("path", { d: "M 12 8 L 6 8", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
|
|
343
|
-
},
|
|
344
|
-
],
|
|
345
|
-
[
|
|
346
|
-
'alert',
|
|
347
|
-
{
|
|
348
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 10.25 3 C 6.246 3 3 6.246 3 10.25 C 3 14.254 6.246 17.5 10.25 17.5 C 14.254 17.5 17.5 14.254 17.5 10.25 C 17.5 6.246 14.254 3 10.25 3 Z M 1.5 10.25 C 1.5 5.418 5.418 1.5 10.25 1.5 C 15.082 1.5 19 5.418 19 10.25 C 19 15.082 15.082 19 10.25 19 C 5.418 19 1.5 15.082 1.5 10.25 Z M 11.25 13.25 C 11.25 13.802 10.802 14.25 10.25 14.25 C 9.698 14.25 9.25 13.802 9.25 13.25 C 9.25 12.698 9.698 12.25 10.25 12.25 C 10.802 12.25 11.25 12.698 11.25 13.25 Z M 11 11.25 L 11 5.75 L 9.5 5.75 L 9.5 11.25 Z", fill: strokeColor }), jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" })] })),
|
|
349
|
-
},
|
|
350
|
-
],
|
|
351
|
-
[
|
|
352
|
-
'message',
|
|
353
|
-
{
|
|
354
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 17.75 5 C 17.75 2.929 16.071 1.25 14 1.25 L 6 1.25 C 3.929 1.25 2.25 2.929 2.25 5 L 2.25 19 L 3.75 19 C 3.75 17.757 4.757 16.75 6 16.75 L 14 16.75 C 16.071 16.75 17.75 15.071 17.75 13 Z M 3.75 16 L 3.75 5 C 3.75 3.757 4.757 2.75 6 2.75 L 14 2.75 C 15.243 2.75 16.25 3.757 16.25 5 L 16.25 13 C 16.25 14.243 15.243 15.25 14 15.25 L 6 15.25 C 5.156 15.25 4.377 15.529 3.75 16 Z", fill: strokeColor })),
|
|
355
|
-
},
|
|
356
|
-
],
|
|
357
|
-
[
|
|
358
|
-
'blank',
|
|
359
|
-
{
|
|
360
|
-
line: (_props) => jsx(Fragment, {}),
|
|
361
|
-
},
|
|
362
|
-
],
|
|
363
|
-
[
|
|
364
|
-
'check',
|
|
365
|
-
{
|
|
366
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 14.5 6 L 8.53 11.97 L 6.06 9.5 L 5 10.56 L 8 13.56 L 8.53 14.09 L 9.06 13.56 L 15.56 7.06 Z", fill: strokeColor })),
|
|
367
|
-
},
|
|
368
|
-
],
|
|
369
|
-
[
|
|
370
|
-
'help',
|
|
371
|
-
{
|
|
372
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 10 18 C 14.418 18 18 14.418 18 10 C 18 5.582 14.418 2 10 2 C 5.582 2 2 5.582 2 10 C 2 14.418 5.582 18 10 18 Z", fill: strokeColor }), jsx("path", { d: "M 11 13 C 11 13.552 10.552 14 10 14 C 9.448 14 9 13.552 9 13 C 9 12.448 9.448 12 10 12 C 10.552 12 11 12.448 11 13 Z M 8.75 8 C 8.75 7.31 9.31 6.75 10 6.75 C 10.69 6.75 11.25 7.31 11.25 8 C 11.25 8.69 10.69 9.25 10 9.25 L 9.25 9.25 L 9.25 11 L 10.75 11 L 10.75 10.646 C 12.118 10.259 12.966 8.893 12.706 7.496 C 12.446 6.098 11.163 5.129 9.748 5.26 C 8.332 5.39 7.249 6.578 7.25 8 Z", fill: strokeColor }), jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z M 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 Z", fill: strokeColor })] })),
|
|
373
|
-
},
|
|
374
|
-
],
|
|
375
|
-
[
|
|
376
|
-
'menu',
|
|
377
|
-
{
|
|
378
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18 6.25H2v1.5h16v-1.5Zm0 6H2v1.5h16v-1.5Z", fill: strokeColor })),
|
|
379
|
-
},
|
|
380
|
-
],
|
|
381
|
-
[
|
|
382
|
-
'attach',
|
|
383
|
-
{
|
|
384
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("g", { clipPath: "url(#a)", children: jsx("path", { d: "m8 13 4-4a1.414 1.414 0 1 0-2-2l-6 6a2.828 2.828 0 1 0 4 4l7.5-7.5a4.243 4.243 0 1 0-6-6L4 9", stroke: strokeColor, strokeWidth: stroke }) }), jsx("defs", { children: jsx("clipPath", { id: "a", children: jsx("path", { fill: "transparent", transform: "translate(1 1)", d: "M0 0h18v18H0z" }) }) })] })),
|
|
385
|
-
},
|
|
386
|
-
],
|
|
387
|
-
[
|
|
388
|
-
'ctrl key',
|
|
389
|
-
{
|
|
390
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 33 0 L 33 24 L 0 24 Z", fill: "transparent" }), jsxs("g", { transform: "translate(3 2.998)", children: [jsx("path", { d: "M 8.646 12.49 C 9.898 12.49 10.445 11.717 10.879 11.717 C 11.125 11.717 11.288 11.911 11.288 12.213 C 11.288 12.757 10.107 13.409 8.646 13.409 C 6.239 13.409 5 11.268 5 9.032 C 5 6.795 6.239 4.654 8.705 4.654 C 10.178 4.654 11.112 5.475 11.112 5.911 C 11.112 6.188 10.949 6.42 10.691 6.42 C 10.224 6.42 9.99 5.574 8.705 5.574 C 6.86 5.574 6.098 7.387 6.098 9.032 C 6.098 10.677 6.882 12.49 8.644 12.49 Z M 13.062 5.513 C 13.062 5.163 13.262 4.944 13.576 4.944 C 13.89 4.944 14.089 5.161 14.089 5.513 L 14.089 6.904 L 14.511 6.904 C 14.849 6.904 15.024 7.072 15.024 7.362 C 15.024 7.652 14.849 7.82 14.511 7.82 L 14.089 7.82 L 14.089 12.838 C 14.089 13.188 13.89 13.407 13.576 13.407 C 13.262 13.407 13.062 13.19 13.062 12.838 L 13.062 7.823 L 12.641 7.823 C 12.303 7.823 12.127 7.654 12.127 7.364 C 12.127 7.075 12.303 6.906 12.641 6.906 L 13.062 6.906 L 13.062 5.516 Z M 16.263 7.4 C 16.263 7.05 16.463 6.83 16.777 6.83 C 17.091 6.83 17.29 7.047 17.29 7.4 L 17.29 7.944 L 17.315 7.944 C 17.549 7.448 18.121 6.83 18.717 6.83 C 19.08 6.83 19.289 7.072 19.289 7.375 C 19.289 7.677 19.08 7.871 18.646 7.954 C 18.038 8.062 17.29 8.533 17.29 9.78 L 17.29 12.84 C 17.29 13.19 17.091 13.409 16.777 13.409 C 16.463 13.409 16.263 13.193 16.263 12.84 Z M 21.463 12.84 C 21.463 13.19 21.263 13.409 20.949 13.409 C 20.635 13.409 20.436 13.193 20.436 12.84 L 20.436 4.571 C 20.436 4.221 20.635 4.002 20.949 4.002 C 21.263 4.002 21.463 4.219 21.463 4.571 Z", fill: strokeColor, strokeWidth: "0.5", stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" }), jsx("path", { d: "M 0 14.98 L 0 3.032 C 0 1.018 1.026 0.001 3.07 0 L 7 0 L 7 0.002 L 21.965 0 L 23.93 0 C 25.983 0 27 1.017 27 3.031 L 27 14.981 C 27 16.994 25.984 18.001 23.93 18.001 L 21.965 18.001 L 7 18.002 L 7 18.001 L 3.07 18.001 C 1.026 18.001 0 16.994 0 14.98 Z M 3.09 1.576 C 2.112 1.576 1.574 2.104 1.574 3.12 L 1.574 14.891 C 1.574 15.909 2.112 16.426 3.09 16.426 L 7 16.427 L 7 16.43 L 21.955 16.428 L 23.91 16.428 C 24.878 16.428 25.426 15.909 25.426 14.893 L 25.426 3.12 C 25.426 2.104 24.878 1.576 23.91 1.576 L 21.955 1.576 L 7 1.58 L 7 1.576 Z", fill: strokeColor })] })] })),
|
|
391
|
-
},
|
|
392
|
-
],
|
|
393
|
-
[
|
|
394
|
-
'g key',
|
|
395
|
-
{
|
|
396
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsxs("g", { transform: "translate(3 2.998)", children: [jsx("path", { d: "M 3.07 18.001 L 14.93 18.001 C 16.984 18.001 18 16.994 18 14.981 L 18 3.031 C 18 1.017 16.983 0 14.93 0 L 3.07 0 C 1.026 0.001 0 1.018 0 3.032 L 0 14.98 C 0 16.994 1.026 18.001 3.07 18.001 Z M 3.09 16.426 C 2.112 16.426 1.574 15.909 1.574 14.891 L 1.574 3.12 C 1.574 2.104 2.112 1.576 3.09 1.576 L 14.91 1.576 C 15.878 1.576 16.426 2.104 16.426 3.12 L 16.426 14.893 C 16.426 15.909 15.878 16.428 14.91 16.428 Z", fill: strokeColor }), jsx("path", { d: "M 9.044 13.581 C 11.43 13.581 12.847 12.184 12.847 10.169 L 12.847 9.456 C 12.847 8.927 12.534 8.615 12.026 8.615 L 9.513 8.615 C 9.152 8.615 8.937 8.849 8.937 9.182 C 8.937 9.475 9.152 9.739 9.513 9.739 L 11.293 9.739 L 11.293 10.375 C 11.293 11.528 10.54 12.291 9.063 12.291 C 7.49 12.291 6.444 10.952 6.444 8.908 C 6.444 6.884 7.48 5.515 9.034 5.515 C 10.139 5.515 10.961 6.043 11.362 7.011 C 11.527 7.344 11.713 7.481 12.016 7.481 C 12.417 7.481 12.681 7.226 12.681 6.816 C 12.681 6.649 12.662 6.522 12.593 6.365 C 12.134 5.134 10.833 4.224 9.014 4.224 C 6.483 4.224 4.859 6.053 4.859 8.908 C 4.859 11.773 6.483 13.581 9.044 13.581 Z", fill: strokeColor })] })] })),
|
|
397
|
-
},
|
|
398
|
-
],
|
|
399
|
-
[
|
|
400
|
-
'cmd key',
|
|
401
|
-
{
|
|
402
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsxs("g", { transform: "translate(3 2.998)", children: [jsx("path", { d: "M 3.07 18.001 L 14.93 18.001 C 16.984 18.001 18 16.994 18 14.981 L 18 3.031 C 18 1.017 16.983 0 14.93 0 L 3.07 0 C 1.026 0.001 0 1.018 0 3.032 L 0 14.98 C 0 16.994 1.026 18.001 3.07 18.001 Z M 3.09 16.426 C 2.112 16.426 1.574 15.909 1.574 14.891 L 1.574 3.12 C 1.574 2.104 2.112 1.576 3.09 1.576 L 14.91 1.576 C 15.878 1.576 16.426 2.104 16.426 3.12 L 16.426 14.893 C 16.426 15.909 15.878 16.428 14.91 16.428 Z", fill: strokeColor }), jsx("path", { d: "M 6.708 8.096 L 6.708 9.905 L 5.974 9.905 C 5.426 9.901 4.9 10.116 4.511 10.501 C 4.122 10.886 3.902 11.411 3.901 11.959 C 3.898 12.51 4.115 13.04 4.504 13.431 C 4.893 13.823 5.422 14.042 5.974 14.041 C 7.119 14.033 8.044 13.104 8.047 11.959 L 8.047 11.216 L 9.826 11.216 L 9.826 11.959 C 9.826 13.105 10.753 14.036 11.899 14.041 C 12.45 14.04 12.979 13.82 13.367 13.43 C 13.756 13.039 13.974 12.51 13.972 11.959 C 13.972 10.824 13.043 9.906 11.899 9.906 L 11.157 9.906 L 11.157 8.096 L 11.899 8.096 C 12.448 8.097 12.975 7.881 13.364 7.494 C 13.752 7.107 13.971 6.581 13.972 6.032 C 13.971 4.888 13.044 3.961 11.899 3.96 C 10.756 3.963 9.83 4.889 9.826 6.032 L 9.826 6.776 L 8.047 6.776 L 8.047 6.033 C 8.04 4.891 7.116 3.967 5.974 3.96 C 5.424 3.958 4.896 4.176 4.507 4.566 C 4.118 4.955 3.9 5.483 3.901 6.033 C 3.9 6.582 4.119 7.109 4.508 7.497 C 4.897 7.884 5.425 8.1 5.974 8.096 Z M 8.047 9.915 L 8.047 8.086 L 9.826 8.086 L 9.826 9.914 Z M 5.974 6.787 C 5.774 6.788 5.581 6.709 5.44 6.568 C 5.298 6.426 5.219 6.233 5.221 6.033 C 5.221 5.633 5.563 5.281 5.974 5.281 C 6.374 5.281 6.708 5.633 6.708 6.033 L 6.708 6.787 Z M 11.899 6.787 L 11.157 6.787 L 11.157 6.033 C 11.157 5.633 11.499 5.281 11.899 5.281 C 12.3 5.281 12.652 5.633 12.652 6.033 C 12.652 6.454 12.31 6.787 11.899 6.787 Z M 5.974 11.196 L 6.708 11.196 L 6.708 11.949 C 6.708 12.359 6.375 12.692 5.965 12.692 C 5.554 12.692 5.221 12.359 5.221 11.949 C 5.221 11.548 5.563 11.196 5.974 11.196 Z M 11.899 11.196 C 12.3 11.196 12.652 11.548 12.652 11.949 C 12.652 12.369 12.31 12.702 11.899 12.702 C 11.487 12.697 11.155 12.361 11.157 11.949 L 11.157 11.196 Z", fill: strokeColor })] })] })),
|
|
403
|
-
},
|
|
404
|
-
],
|
|
405
|
-
[
|
|
406
|
-
'person',
|
|
407
|
-
{
|
|
408
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.5 5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM14 5a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM3.5 13v-.5h13v.5a4.5 4.5 0 0 1-4.5 4.5H8A4.5 4.5 0 0 1 3.5 13ZM2 13v-.5A1.5 1.5 0 0 1 3.5 11h13a1.5 1.5 0 0 1 1.5 1.5v.5a6 6 0 0 1-6 6H8a6 6 0 0 1-6-6Z", fill: strokeColor })),
|
|
409
|
-
},
|
|
410
|
-
],
|
|
411
|
-
[
|
|
412
|
-
'upload',
|
|
413
|
-
{
|
|
414
|
-
line: ({ strokeColor }) => (jsxs("g", { transform: "translate(1 0.94)", children: [jsx("path", { d: "M 0 0.06 L 18 0.06 L 18 18.06 L 0 18.06 Z", fill: "transparent" }), jsx("path", { d: "M 9.53 0.53 L 14.53 5.53 L 13.47 6.59 L 9.75 2.87 L 9.75 13.06 L 8.25 13.06 L 8.25 2.87 L 4.53 6.59 L 3.47 5.53 L 8.47 0.53 L 9 0 Z M 1 13.06 L 1 15.56 C 1 16.388 1.672 17.06 2.5 17.06 L 15.5 17.06 C 16.328 17.06 17 16.388 17 15.56 L 17 13.06 L 15.5 13.06 L 15.5 15.56 L 2.5 15.56 L 2.5 13.06 Z", fill: strokeColor })] })),
|
|
415
|
-
},
|
|
416
|
-
],
|
|
417
|
-
[
|
|
418
|
-
'download',
|
|
419
|
-
{
|
|
420
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m10.75 12.19 3.72-3.72 1.06 1.06-5 5-.53.53-.53-.53-5-5 1.06-1.06 3.72 3.72V2h1.5v10.19ZM2 14v2.5A1.5 1.5 0 0 0 3.5 18h13a1.5 1.5 0 0 0 1.5-1.5V14h-1.5v2.5h-13V14H2Z", fill: strokeColor })),
|
|
421
|
-
},
|
|
422
|
-
],
|
|
423
|
-
[
|
|
424
|
-
'check circle',
|
|
425
|
-
{
|
|
426
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsx("path", { d: "M 12.97 6.97 L 9 10.94 L 7.03 8.97 L 5.97 10.03 L 8.47 12.53 L 9 13.06 L 9.53 12.53 L 14.03 8.03 Z", fill: strokeColor }), jsx("path", { d: "M 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 Z M 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 Z", fill: strokeColor })] })),
|
|
427
|
-
},
|
|
428
|
-
],
|
|
429
|
-
[
|
|
430
|
-
'share',
|
|
431
|
-
{
|
|
432
|
-
line: ({ stroke, strokeColor }) => (jsx("path", { d: "M11 7c-5.063 0-8 4.03-8 9 1.222-1.2 3-3 8-3v3l6-6-6-6v3Z", stroke: strokeColor, strokeWidth: stroke })),
|
|
433
|
-
},
|
|
434
|
-
],
|
|
435
|
-
[
|
|
436
|
-
'g-p assist',
|
|
437
|
-
{
|
|
438
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsxs("g", { children: [jsx("defs", { children: jsxs("linearGradient", { id: "iddX7xoI2TUg1057052775", x1: "0.49751243781094523", x2: "0.5024875621890548", y1: "0", y2: "1", children: [jsx("stop", { offset: "0", stopColor: strokeColor, stopOpacity: "1" }), jsx("stop", { offset: "0.50", stopColor: strokeColor, stopOpacity: "1" }), jsx("stop", { offset: "1", stopColor: strokeColor, stopOpacity: "1" })] }) }), jsx("path", { d: "M 10.5 0.016 C 10.509 4.815 14.401 8.7 19.2 8.7 L 19.2 10.5 C 14.395 10.5 10.5 14.395 10.5 19.2 L 8.7 19.2 C 8.7 14.401 4.815 10.509 0.016 10.5 L 0 10.5 L 0 8.7 L 0.016 8.7 C 4.808 8.691 8.691 4.808 8.7 0.016 L 8.7 0 L 10.5 0 Z M 9.6 14.94 C 10.659 12.562 12.562 10.659 14.94 9.6 C 12.562 8.541 10.659 6.638 9.6 4.26 C 8.541 6.639 6.639 8.541 4.26 9.6 C 6.638 10.659 8.541 12.562 9.6 14.94 Z", transform: "translate(1.4 1.4) rotate(90 9.6 9.6)", fill: "url(#iddX7xoI2TUg1057052775)" })] }), jsx("path", { d: "M 18.2 5 C 18.863 5 19.4 4.463 19.4 3.8 C 19.4 3.137 18.863 2.6 18.2 2.6 C 17.537 2.6 17 3.137 17 3.8 C 17 4.463 17.537 5 18.2 5 Z", fill: strokeColor }), jsx("path", { d: "M 3.8 19.4 C 4.463 19.4 5 18.863 5 18.2 C 5 17.537 4.463 17 3.8 17 C 3.137 17 2.6 17.537 2.6 18.2 C 2.6 18.863 3.137 19.4 3.8 19.4 Z", fill: strokeColor })] })),
|
|
439
|
-
},
|
|
440
|
-
],
|
|
441
|
-
[
|
|
442
|
-
'search',
|
|
443
|
-
{
|
|
444
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 10 9 C 10 9.552 9.552 10 9 10 C 8.448 10 8 9.552 8 9 C 8 8.448 8.448 8 9 8 C 9.552 8 10 8.448 10 9 Z", fill: strokeColor }), jsx("path", { d: "M 18.53 17.47 L 17.47 18.531 L 13.392 14.451 C 10.495 16.785 6.278 16.445 3.793 13.677 C 1.307 10.909 1.42 6.681 4.051 4.05 C 6.682 1.419 10.91 1.306 13.678 3.792 C 16.446 6.277 16.786 10.494 14.452 13.391 Z M 9 14.5 C 12.038 14.5 14.5 12.038 14.5 9 C 14.5 5.962 12.038 3.5 9 3.5 C 5.962 3.5 3.5 5.962 3.5 9 C 3.5 12.038 5.962 14.5 9 14.5 Z", fill: strokeColor })] })),
|
|
445
|
-
},
|
|
446
|
-
],
|
|
447
|
-
[
|
|
448
|
-
'x',
|
|
449
|
-
{
|
|
450
|
-
line: ({ strokeColor }) => (jsxs("g", { transform: "translate(1 1)", children: [jsx("path", { d: "M 0 0 L 18 0 L 18 18 L 0 18 Z", fill: "transparent" }), jsx("path", { d: "M 7.94 9 L 3.47 13.47 L 4.53 14.53 L 9 10.06 L 13.47 14.53 L 14.53 13.47 L 10.06 9 L 14.53 4.53 L 13.47 3.47 L 9 7.94 L 4.53 3.47 L 3.47 4.53 Z", fill: strokeColor })] })),
|
|
451
|
-
},
|
|
452
|
-
],
|
|
453
|
-
[
|
|
454
|
-
'plus',
|
|
455
|
-
{
|
|
456
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 9.25 10.75 L 9.25 16 L 10.75 16 L 10.75 10.75 L 16 10.75 L 16 9.25 L 10.75 9.25 L 10.75 4 L 9.25 4 L 9.25 9.25 L 4 9.25 L 4 10.75 Z", fill: strokeColor })),
|
|
457
|
-
},
|
|
458
|
-
],
|
|
459
|
-
[
|
|
460
|
-
'circle',
|
|
461
|
-
{
|
|
462
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z M 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 Z", fill: strokeColor })),
|
|
463
|
-
},
|
|
464
|
-
],
|
|
465
|
-
[
|
|
466
|
-
'circle fill',
|
|
467
|
-
{
|
|
468
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z", fill: strokeColor })),
|
|
469
|
-
},
|
|
470
|
-
],
|
|
471
|
-
[
|
|
472
|
-
'plus circle',
|
|
473
|
-
{
|
|
474
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z M 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 Z", fill: strokeColor }), jsx("path", { d: "M 10.75 9.25 L 14 9.25 L 14 10.75 L 10.75 10.75 L 10.75 14 L 9.25 14 L 9.25 10.75 L 6 10.75 L 6 9.25 L 9.25 9.25 L 9.25 6 L 10.75 6 Z", fill: strokeColor })] })),
|
|
475
|
-
},
|
|
476
|
-
],
|
|
477
|
-
[
|
|
478
|
-
'chevron down',
|
|
479
|
-
{
|
|
480
|
-
line: ({ stroke, strokeColor }) => (jsx("path", { d: "m5 8 5 5 5-5", stroke: strokeColor, strokeWidth: stroke })),
|
|
481
|
-
},
|
|
482
|
-
],
|
|
483
|
-
[
|
|
484
|
-
'chevron up',
|
|
485
|
-
{
|
|
486
|
-
line: ({ stroke, strokeColor }) => (jsx("path", { d: "m15 12-5-5-5 5", stroke: strokeColor, strokeWidth: stroke })),
|
|
487
|
-
},
|
|
488
|
-
],
|
|
489
|
-
[
|
|
490
|
-
'checked',
|
|
491
|
-
{
|
|
492
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.5 2A1.5 1.5 0 0 0 2 3.5v13A1.5 1.5 0 0 0 3.5 18h13a1.5 1.5 0 0 0 1.5-1.5v-13A1.5 1.5 0 0 0 16.5 2h-13Zm9.47 4.97L9 10.94 7.03 8.97l-1.06 1.06 2.5 2.5.53.53.53-.53 4.5-4.5-1.06-1.06Z", fill: strokeColor })),
|
|
493
|
-
},
|
|
494
|
-
],
|
|
495
|
-
[
|
|
496
|
-
'unchecked',
|
|
497
|
-
{
|
|
498
|
-
line: ({ stroke, strokeColor }) => (jsx("rect", { x: "2.75", y: "2.75", width: "14.5", height: "14.5", rx: ".75", stroke: strokeColor, strokeWidth: stroke })),
|
|
499
|
-
},
|
|
500
|
-
],
|
|
501
|
-
[
|
|
502
|
-
'partial',
|
|
503
|
-
{
|
|
504
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsx("rect", { x: "2", y: "2", width: "16", height: "16", rx: "1.5", fill: strokeColor }), jsx("path", { d: "M14 10H6", stroke: strokeColor, strokeWidth: stroke })] })),
|
|
505
|
-
},
|
|
506
|
-
],
|
|
507
|
-
[
|
|
508
|
-
'search',
|
|
509
|
-
{
|
|
510
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9 14.5a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm5.452-1.109a7 7 0 1 0-1.06 1.06l4.078 4.08 1.06-1.061-4.078-4.079ZM10 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", fill: strokeColor })),
|
|
511
|
-
},
|
|
512
|
-
],
|
|
513
|
-
[
|
|
514
|
-
'filter',
|
|
515
|
-
{
|
|
516
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 4.25h16v1.5H2v-1.5Zm3 5h10v1.5H5v-1.5Zm7 5H8v1.5h4v-1.5Z", fill: strokeColor })),
|
|
517
|
-
},
|
|
518
|
-
],
|
|
519
|
-
[
|
|
520
|
-
'more',
|
|
521
|
-
{
|
|
522
|
-
line: ({ strokeColor }) => (jsx("path", { d: "M 4 11.5 C 3.31 11.5 2.75 10.94 2.75 10.25 C 2.75 9.56 3.31 9 4 9 C 4.69 9 5.25 9.56 5.25 10.25 C 5.25 10.94 4.69 11.5 4 11.5 Z M 10 11.5 C 9.31 11.5 8.75 10.94 8.75 10.25 C 8.75 9.56 9.31 9 10 9 C 10.69 9 11.25 9.56 11.25 10.25 C 11.25 10.94 10.69 11.5 10 11.5 Z M 14.75 10.25 C 14.75 10.94 15.31 11.5 16 11.5 C 16.69 11.5 17.25 10.94 17.25 10.25 C 17.25 9.56 16.69 9 16 9 C 15.31 9 14.75 9.56 14.75 10.25 Z", fill: strokeColor })),
|
|
523
|
-
},
|
|
524
|
-
],
|
|
525
|
-
[
|
|
526
|
-
'people',
|
|
527
|
-
{
|
|
528
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsxs("g", { clipPath: "url(#a)", children: [jsx("path", { d: "M11 18v.75V18Zm.003 0v.75V18ZM10 18h-.75v.75H10V18Zm8-4.124.656.364.094-.17v-.194H18Zm-7 4.874h.002v-1.5H11v1.5Zm-1 0h1v-1.5h-1v1.5Zm-.75-6.25V18h1.5v-5.5h-1.5Zm1.25-1.25c-.69 0-1.25.56-1.25 1.25h1.5a.25.25 0 0 1-.25.25v-1.5Zm7 0h-7v1.5h7v-1.5Zm1.25 1.25c0-.69-.56-1.25-1.25-1.25v1.5a.25.25 0 0 1-.25-.25h1.5Zm0 1.376V12.5h-1.5v1.376h1.5Zm-7.747 4.874a8.748 8.748 0 0 0 7.653-4.51l-1.312-.728a7.248 7.248 0 0 1-6.342 3.738v1.5Z", fill: strokeColor }), jsx("path", { d: "M9 18v.75V18Zm-.004 0v.75V18ZM10 18h.75v.75H10V18ZM2 9.5h-.75H2Zm0 4.376-.656.364-.094-.17v-.194H2Zm7 4.874h-.004v-1.5H9v1.5Zm1 0H9v-1.5h1v1.5Zm.75-9.25V18h-1.5V9.5h1.5ZM9.5 8.25c.69 0 1.25.56 1.25 1.25h-1.5c0 .138.112.25.25.25v-1.5Zm-7 0h7v1.5h-7v-1.5ZM1.25 9.5c0-.69.56-1.25 1.25-1.25v1.5a.25.25 0 0 0 .25-.25h-1.5Zm0 4.376V9.5h1.5v4.376h-1.5Zm7.746 4.874a8.748 8.748 0 0 1-7.652-4.51l1.312-.728a7.248 7.248 0 0 0 6.34 3.738v1.5Z", fill: strokeColor }), jsx("circle", { cx: "6", cy: "4", r: "2", stroke: strokeColor, strokeWidth: stroke }), jsx("circle", { cx: "14", cy: "6", r: "2", stroke: strokeColor, strokeWidth: stroke })] }), jsx("defs", { children: jsx("clipPath", { id: "a", children: jsx("path", { fill: "#fff", transform: "translate(1 1)", d: "M0 0h18v18H0z" }) }) })] })),
|
|
529
|
-
},
|
|
530
|
-
],
|
|
531
|
-
[
|
|
532
|
-
'wallet',
|
|
533
|
-
{
|
|
534
|
-
line: ({ stroke, strokeColor, coverUp }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 7 8 C 7.552 8 8 8.448 8 9 C 8 9.552 7.552 10 7 10 C 6.448 10 6 9.552 6 9 C 6 8.448 6.448 8 7 8 Z", fill: strokeColor }), jsx("path", { d: "M 15.5 2 L 2.5 2 C 2.224 2 2 2.224 2 2.5 L 2 15.5 C 2 15.776 2.224 16 2.5 16 L 15.5 16 C 15.776 16 16 15.776 16 15.5 L 16 2.5 C 16 2.224 15.776 2 15.5 2 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" }), jsx("path", { d: "M 17 10.6 L 17 7.4 C 17 7.179 16.821 7 16.6 7 L 13 7 C 11.895 7 11 7.895 11 9 C 11 10.105 11.895 11 13 11 L 16.6 11 C 16.821 11 17 10.821 17 10.6 Z", fill: coverUp, strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })] })),
|
|
535
|
-
},
|
|
536
|
-
],
|
|
537
|
-
[
|
|
538
|
-
'invoice',
|
|
539
|
-
{
|
|
540
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.5 5.5v-3h-8v15h11v-12h-3Zm3 13.5h-11A1.5 1.5 0 0 1 3 17.5v-15A1.5 1.5 0 0 1 4.5 1h8A1.5 1.5 0 0 1 14 2.5V4h1.5A1.5 1.5 0 0 1 17 5.5v12a1.5 1.5 0 0 1-1.5 1.5Zm-5-4.25H6v-1.5h4.5v1.5Zm-4.5-4h4.5v-1.5H6v1.5Zm8-.75a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z", fill: strokeColor })),
|
|
541
|
-
},
|
|
542
|
-
],
|
|
543
|
-
[
|
|
544
|
-
'payment',
|
|
545
|
-
{
|
|
546
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.5 4.5h15v2.75h-15V4.5Zm0 4.25v6.75h15V8.75h-15ZM17.5 3h-15A1.5 1.5 0 0 0 1 4.5v11A1.5 1.5 0 0 0 2.5 17h15a1.5 1.5 0 0 0 1.5-1.5v-11A1.5 1.5 0 0 0 17.5 3ZM14 13a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm-2 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z", fill: strokeColor })),
|
|
547
|
-
},
|
|
548
|
-
],
|
|
549
|
-
[
|
|
550
|
-
'heart',
|
|
551
|
-
{
|
|
552
|
-
line: ({ stroke, strokeColor }) => (jsxs(Fragment, { children: [jsxs("g", { clipPath: "url(#a)", children: [jsx("path", { d: "M11 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", fill: strokeColor }), jsx("path", { d: "M2 7c0 6 8 11 8 11s8-5 8-11c0-3-1.79-5-4-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4C3.79 2 2 4 2 7Z", stroke: strokeColor, strokeWidth: stroke })] }), jsx("defs", { children: jsx("clipPath", { id: "a", children: jsx("path", { fill: "transparent", transform: "translate(1 1)", d: "M0 0h18v18H0z" }) }) })] })),
|
|
553
|
-
},
|
|
554
|
-
],
|
|
555
|
-
[
|
|
556
|
-
'clock',
|
|
557
|
-
{
|
|
558
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsx("path", { d: "M 10.75 5 L 10.75 9.69 L 13.53 12.47 L 12.47 13.53 L 9.47 10.53 L 9.25 10.31 L 9.25 5 Z", fill: strokeColor }), jsx("path", { d: "M 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 Z M 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 Z", fill: strokeColor })] })),
|
|
559
|
-
},
|
|
560
|
-
],
|
|
561
|
-
[
|
|
562
|
-
'book',
|
|
563
|
-
{
|
|
564
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 3.25h-.75v13.5H7A2.25 2.25 0 0 1 9.25 19h1.5A2.25 2.25 0 0 1 13 16.75h5.75V3.25H13a3.744 3.744 0 0 0-3 1.5 3.744 3.744 0 0 0-3-1.5H2ZM9.25 7A2.25 2.25 0 0 0 7 4.75H2.75v10.5H7c.844 0 1.623.279 2.25.75V7Zm1.5 9a3.734 3.734 0 0 1 2.25-.75h4.25V4.75H13A2.25 2.25 0 0 0 10.75 7v9Z", fill: strokeColor })),
|
|
565
|
-
},
|
|
566
|
-
],
|
|
567
|
-
[
|
|
568
|
-
'sparkle',
|
|
569
|
-
{
|
|
570
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.5 2h.5a7 7 0 0 0 7 7v2a7 7 0 0 0-7 7H9a7 7 0 0 0-7-7V9a7 7 0 0 0 7-7h1.5ZM10 4.88A8.525 8.525 0 0 0 15.12 10 8.525 8.525 0 0 0 10 15.12 8.525 8.525 0 0 0 4.88 10 8.524 8.524 0 0 0 10 4.88ZM17 4a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM5 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", fill: strokeColor })),
|
|
571
|
-
},
|
|
572
|
-
],
|
|
573
|
-
[
|
|
574
|
-
'inbox',
|
|
575
|
-
{
|
|
576
|
-
line: ({ strokeColor }) => (jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.5 4.5h15v4.75h-5.25V10a2.25 2.25 0 0 1-4.5 0v-.75H2.5V4.5Zm0 6.25v4.75h15v-4.75h-3.825a3.751 3.751 0 0 1-7.35 0H2.5ZM17.5 3h-15A1.5 1.5 0 0 0 1 4.5v11A1.5 1.5 0 0 0 2.5 17h15a1.5 1.5 0 0 0 1.5-1.5v-11A1.5 1.5 0 0 0 17.5 3Z", fill: strokeColor })),
|
|
577
|
-
},
|
|
578
|
-
],
|
|
579
|
-
[
|
|
580
|
-
'home',
|
|
581
|
-
{
|
|
582
|
-
line: ({ strokeColor }) => (jsxs(Fragment, { children: [jsx("path", { d: "M 10 13 C 10.552 13 11 12.552 11 12 C 11 11.448 10.552 11 10 11 C 9.448 11 9 11.448 9 12 C 9 12.552 9.448 13 10 13 Z", fill: strokeColor }), jsx("path", { d: "M 2 9 L 10 1 L 18 9 L 18 16.5 C 18 17.328 17.328 18 16.5 18 L 3.5 18 C 2.672 18 2 17.328 2 16.5 Z M 16.5 16.5 L 16.5 9.621 L 10 3.121 L 3.5 9.621 L 3.5 16.5 Z", fill: strokeColor })] })),
|
|
583
|
-
},
|
|
584
|
-
],
|
|
585
|
-
]);
|
|
586
|
-
|
|
587
|
-
const Icon = React.memo((props) => {
|
|
588
|
-
var _a;
|
|
589
|
-
const theme = useTheme();
|
|
590
|
-
const { name = 'home', size = 20, stroke = 1.5, strokeColor = theme.current.colors['core-icon-primary'], fillColor = 'transparent', coverUp = theme.current.colors['core-surface-primary'], toggle = false, pointer = false, disabled = false, onClick = () => null } = props, svgAttributes = __rest(props, ["name", "size", "stroke", "strokeColor", "fillColor", "coverUp", "toggle", "pointer", "disabled", "onClick"]);
|
|
591
|
-
const { id: svgId, className, style } = svgAttributes, rest = __rest(svgAttributes, ["id", "className", "style"]);
|
|
592
|
-
// memo cursor style
|
|
593
|
-
const cursor = useMemo(() => {
|
|
594
|
-
if (disabled)
|
|
595
|
-
return 'default';
|
|
596
|
-
return pointer ? 'pointer' : 'inherit';
|
|
597
|
-
}, [disabled, pointer]);
|
|
598
|
-
// memo icon style
|
|
599
|
-
const iconStyle = useMemo(() => {
|
|
600
|
-
return {
|
|
601
|
-
cursor,
|
|
602
|
-
userSelect: 'none',
|
|
603
|
-
WebkitUserSelect: 'none',
|
|
604
|
-
WebkitTapHighlightColor: 'transparent',
|
|
605
|
-
outline: 'none',
|
|
606
|
-
border: 0,
|
|
607
|
-
};
|
|
608
|
-
}, [cursor]);
|
|
609
|
-
const variantKey = toggle ? 'lineOn' : 'line';
|
|
610
|
-
const iconVariant = STATIC_ICON_REGISTRY.get(name);
|
|
611
|
-
const shape = (_a = iconVariant === null || iconVariant === void 0 ? void 0 : iconVariant[variantKey]) !== null && _a !== void 0 ? _a : iconVariant === null || iconVariant === void 0 ? void 0 : iconVariant.line;
|
|
612
|
-
if (!shape)
|
|
613
|
-
return null;
|
|
614
|
-
return (jsxs("svg", Object.assign({ id: svgId, className: className, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 20 20", style: Object.assign(Object.assign({}, (style !== null && style !== void 0 ? style : {})), iconStyle), onClick: (e) => onClick(e), fill: fillColor, role: "img", "aria-label": `${name} icon`, tabIndex: pointer && !disabled ? 0 : -1, onKeyDown: (e) => accessibleKeyDown(e, () => onClick), opacity: disabled ? 0.5 : 1 }, rest, { children: [jsx("title", {}), shape({ stroke, strokeColor, fillColor, coverUp })] })));
|
|
615
|
-
});
|
|
616
|
-
Icon.displayName = 'Icon';
|
|
617
|
-
|
|
618
|
-
var IconNames;
|
|
619
|
-
(function (IconNames) {
|
|
620
|
-
IconNames["home"] = "home";
|
|
621
|
-
IconNames["inbox"] = "inbox";
|
|
622
|
-
IconNames["sparkle"] = "sparkle";
|
|
623
|
-
IconNames["people"] = "people";
|
|
624
|
-
IconNames["wallet"] = "wallet";
|
|
625
|
-
IconNames["invoice"] = "invoice";
|
|
626
|
-
IconNames["payment"] = "payment";
|
|
627
|
-
IconNames["heart"] = "heart";
|
|
628
|
-
IconNames["clock"] = "clock";
|
|
629
|
-
IconNames["book"] = "book";
|
|
630
|
-
IconNames["search"] = "search";
|
|
631
|
-
IconNames["filter"] = "filter";
|
|
632
|
-
IconNames["more"] = "more";
|
|
633
|
-
IconNames["unchecked"] = "unchecked";
|
|
634
|
-
IconNames["checked"] = "checked";
|
|
635
|
-
IconNames["partial"] = "partial";
|
|
636
|
-
IconNames["chevronDown"] = "chevron down";
|
|
637
|
-
IconNames["chevronUp"] = "chevron up";
|
|
638
|
-
IconNames["plus"] = "plus";
|
|
639
|
-
IconNames["plusCircle"] = "plus circle";
|
|
640
|
-
IconNames["x"] = "x";
|
|
641
|
-
IconNames["gpAssist"] = "g-p assist";
|
|
642
|
-
IconNames["upload"] = "upload";
|
|
643
|
-
IconNames["download"] = "download";
|
|
644
|
-
IconNames["share"] = "share";
|
|
645
|
-
IconNames["checkCircle"] = "check circle";
|
|
646
|
-
IconNames["circle"] = "circle";
|
|
647
|
-
IconNames["circleFill"] = "circle fill";
|
|
648
|
-
IconNames["person"] = "person";
|
|
649
|
-
IconNames["ctrlKey"] = "ctrl key";
|
|
650
|
-
IconNames["commandKey"] = "cmd key";
|
|
651
|
-
IconNames["gKey"] = "g key";
|
|
652
|
-
IconNames["attach"] = "attach";
|
|
653
|
-
IconNames["menu"] = "menu";
|
|
654
|
-
IconNames["help"] = "help";
|
|
655
|
-
IconNames["blank"] = "blank";
|
|
656
|
-
IconNames["check"] = "check";
|
|
657
|
-
IconNames["message"] = "message";
|
|
658
|
-
IconNames["info"] = "info";
|
|
659
|
-
IconNames["alert"] = "alert";
|
|
660
|
-
IconNames["notification"] = "notification";
|
|
661
|
-
IconNames["arrowUp"] = "arrow up";
|
|
662
|
-
IconNames["arrowLeft"] = "arrow left";
|
|
663
|
-
IconNames["arrowRight"] = "arrow right";
|
|
664
|
-
IconNames["navigate"] = "navigate";
|
|
665
|
-
IconNames["document"] = "document";
|
|
666
|
-
IconNames["refresh"] = "refresh";
|
|
667
|
-
IconNames["recentChats"] = "recent chats";
|
|
668
|
-
IconNames["trashBin"] = "trash bin";
|
|
669
|
-
IconNames["dollar"] = "dollar";
|
|
670
|
-
IconNames["apple"] = "apple";
|
|
671
|
-
IconNames["view"] = "view";
|
|
672
|
-
IconNames["openCircle"] = "open circle";
|
|
673
|
-
IconNames["expanded"] = "expanded";
|
|
674
|
-
IconNames["concise"] = "concise";
|
|
675
|
-
IconNames["moderate"] = "moderate";
|
|
676
|
-
IconNames["mail"] = "mail";
|
|
677
|
-
IconNames["textDocument"] = "text document";
|
|
678
|
-
IconNames["complianceCheck"] = "compliance check";
|
|
679
|
-
IconNames["edit"] = "edit";
|
|
680
|
-
IconNames["characterBeam"] = "character beam";
|
|
681
|
-
IconNames["undo"] = "undo";
|
|
682
|
-
IconNames["chat"] = "chat";
|
|
683
|
-
IconNames["exclamation"] = "exclamation";
|
|
684
|
-
IconNames["chart"] = "chart";
|
|
685
|
-
IconNames["lightBulb"] = "light bulb";
|
|
686
|
-
IconNames["settings"] = "settings";
|
|
687
|
-
IconNames["documentEditor"] = "document editor";
|
|
688
|
-
IconNames["chartArrow"] = "chart arrow";
|
|
689
|
-
IconNames["focus"] = "focus";
|
|
690
|
-
IconNames["briefcase"] = "briefcase";
|
|
691
|
-
IconNames["globeLocation"] = "globe location";
|
|
692
|
-
IconNames["barChart"] = "bar chart";
|
|
693
|
-
IconNames["fontSmaller"] = "font smaller";
|
|
694
|
-
IconNames["fontLarger"] = "font larger";
|
|
695
|
-
IconNames["copy"] = "copy";
|
|
696
|
-
IconNames["stop"] = "stop";
|
|
697
|
-
IconNames["like"] = "like";
|
|
698
|
-
IconNames["unlike"] = "unlike";
|
|
699
|
-
IconNames["bold"] = "bold";
|
|
700
|
-
IconNames["italic"] = "italic";
|
|
701
|
-
IconNames["underline"] = "underline";
|
|
702
|
-
IconNames["strike"] = "strike";
|
|
703
|
-
IconNames["bulletList"] = "bullet list";
|
|
704
|
-
IconNames["numberedList"] = "numbered list";
|
|
705
|
-
IconNames["sink"] = "sink";
|
|
706
|
-
IconNames["lift"] = "lift";
|
|
707
|
-
IconNames["code"] = "code";
|
|
708
|
-
IconNames["taskList"] = "task list";
|
|
709
|
-
IconNames["highlight"] = "highlight";
|
|
710
|
-
})(IconNames || (IconNames = {}));
|
|
711
|
-
|
|
712
|
-
export { Icon as I, IconNames as a };
|