@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
|
@@ -0,0 +1,1386 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var tslib_es6 = require("./tslib.es6-C8dZW5nY.js"), jsxRuntime = require("react/jsx-runtime"), React = require("react"), hooks_useTheme = require("../hooks/useTheme.js");
|
|
4
|
+
|
|
5
|
+
require("../theme/colors.js"), require("../hooks/useWindow.js");
|
|
6
|
+
|
|
7
|
+
var utils = require("./utils-BsBHecUI.js");
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Static icon registry created once at module load.
|
|
11
|
+
* Each entry stores only icon line content renderers.
|
|
12
|
+
*/ const STATIC_ICON_REGISTRY = new Map([ [ "task list", {
|
|
13
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
14
|
+
children: [ jsxRuntime.jsx("path", {
|
|
15
|
+
d: "M11 6L21 6",
|
|
16
|
+
stroke: strokeColor,
|
|
17
|
+
strokeWidth: stroke,
|
|
18
|
+
strokeLinecap: "round"
|
|
19
|
+
}), jsxRuntime.jsx("path", {
|
|
20
|
+
d: "M11 12L21 12",
|
|
21
|
+
stroke: strokeColor,
|
|
22
|
+
strokeWidth: stroke,
|
|
23
|
+
strokeLinecap: "round"
|
|
24
|
+
}), jsxRuntime.jsx("path", {
|
|
25
|
+
d: "M11 18L21 18",
|
|
26
|
+
stroke: strokeColor,
|
|
27
|
+
strokeWidth: stroke,
|
|
28
|
+
strokeLinecap: "round"
|
|
29
|
+
}), jsxRuntime.jsx("path", {
|
|
30
|
+
d: "M3 7.39286C3 7.39286 4 8.04466 4.5 9C4.5 9 6 5.25 8 4",
|
|
31
|
+
stroke: strokeColor,
|
|
32
|
+
strokeWidth: stroke,
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}), jsxRuntime.jsx("path", {
|
|
36
|
+
d: "M3 18.3929C3 18.3929 4 19.0447 4.5 20C4.5 20 6 16.25 8 15",
|
|
37
|
+
stroke: strokeColor,
|
|
38
|
+
strokeWidth: stroke,
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round"
|
|
41
|
+
}) ]
|
|
42
|
+
})
|
|
43
|
+
} ], [ "highlight", {
|
|
44
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
45
|
+
children: [ jsxRuntime.jsx("path", {
|
|
46
|
+
d: "M 0 0 L 24 0 L 24 24 L 0 24 Z",
|
|
47
|
+
fill: "transparent"
|
|
48
|
+
}), jsxRuntime.jsx("path", {
|
|
49
|
+
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",
|
|
50
|
+
fill: strokeColor
|
|
51
|
+
}) ]
|
|
52
|
+
})
|
|
53
|
+
} ], [ "bold", {
|
|
54
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
55
|
+
children: [ jsxRuntime.jsx("path", {
|
|
56
|
+
fillRule: "evenodd",
|
|
57
|
+
clipRule: "evenodd",
|
|
58
|
+
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",
|
|
59
|
+
stroke: strokeColor,
|
|
60
|
+
strokeWidth: stroke,
|
|
61
|
+
strokeLinecap: "round",
|
|
62
|
+
strokeLinejoin: "round"
|
|
63
|
+
}), jsxRuntime.jsx("path", {
|
|
64
|
+
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",
|
|
65
|
+
stroke: strokeColor,
|
|
66
|
+
strokeWidth: stroke,
|
|
67
|
+
strokeLinecap: "round",
|
|
68
|
+
strokeLinejoin: "round"
|
|
69
|
+
}) ]
|
|
70
|
+
})
|
|
71
|
+
} ], [ "italic", {
|
|
72
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
73
|
+
children: [ jsxRuntime.jsx("path", {
|
|
74
|
+
d: "M12 4H19",
|
|
75
|
+
stroke: strokeColor,
|
|
76
|
+
strokeWidth: stroke,
|
|
77
|
+
strokeLinecap: "round",
|
|
78
|
+
strokeLinejoin: "round"
|
|
79
|
+
}), jsxRuntime.jsx("path", {
|
|
80
|
+
d: "M8 20L16 4",
|
|
81
|
+
stroke: strokeColor,
|
|
82
|
+
strokeWidth: stroke,
|
|
83
|
+
strokeLinecap: "round",
|
|
84
|
+
strokeLinejoin: "round"
|
|
85
|
+
}), jsxRuntime.jsx("path", {
|
|
86
|
+
d: "M5 20H12",
|
|
87
|
+
stroke: strokeColor,
|
|
88
|
+
strokeWidth: stroke,
|
|
89
|
+
strokeLinecap: "round",
|
|
90
|
+
strokeLinejoin: "round"
|
|
91
|
+
}) ]
|
|
92
|
+
})
|
|
93
|
+
} ], [ "underline", {
|
|
94
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
95
|
+
children: [ jsxRuntime.jsx("path", {
|
|
96
|
+
d: "M5.5 3V11.5C5.5 15.0899 8.41015 18 12 18C15.5899 18 18.5 15.0899 18.5 11.5V3",
|
|
97
|
+
stroke: strokeColor,
|
|
98
|
+
strokeWidth: stroke,
|
|
99
|
+
strokeLinecap: "round",
|
|
100
|
+
strokeLinejoin: "round"
|
|
101
|
+
}), jsxRuntime.jsx("path", {
|
|
102
|
+
d: "M3 21H21",
|
|
103
|
+
stroke: strokeColor,
|
|
104
|
+
strokeWidth: stroke,
|
|
105
|
+
strokeLinecap: "round"
|
|
106
|
+
}) ]
|
|
107
|
+
})
|
|
108
|
+
} ], [ "strike", {
|
|
109
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
110
|
+
children: [ jsxRuntime.jsx("path", {
|
|
111
|
+
d: "M4 12H20",
|
|
112
|
+
stroke: strokeColor,
|
|
113
|
+
strokeWidth: stroke,
|
|
114
|
+
strokeLinecap: "round",
|
|
115
|
+
strokeLinejoin: "round"
|
|
116
|
+
}), jsxRuntime.jsx("path", {
|
|
117
|
+
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",
|
|
118
|
+
stroke: strokeColor,
|
|
119
|
+
strokeWidth: stroke,
|
|
120
|
+
strokeLinecap: "round"
|
|
121
|
+
}) ]
|
|
122
|
+
})
|
|
123
|
+
} ], [ "link", {
|
|
124
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
125
|
+
children: [ jsxRuntime.jsx("path", {
|
|
126
|
+
d: "M 0 0 L 24 0 L 24 24 L 0 24 Z",
|
|
127
|
+
fill: "transparent"
|
|
128
|
+
}), jsxRuntime.jsx("path", {
|
|
129
|
+
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",
|
|
130
|
+
fill: strokeColor
|
|
131
|
+
}), jsxRuntime.jsx("path", {
|
|
132
|
+
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",
|
|
133
|
+
fill: strokeColor
|
|
134
|
+
}) ]
|
|
135
|
+
})
|
|
136
|
+
} ], [ "bullet list", {
|
|
137
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
138
|
+
children: [ jsxRuntime.jsx("path", {
|
|
139
|
+
d: "M8 5L20 5",
|
|
140
|
+
stroke: strokeColor,
|
|
141
|
+
strokeWidth: stroke,
|
|
142
|
+
strokeLinecap: "round"
|
|
143
|
+
}), jsxRuntime.jsx("path", {
|
|
144
|
+
d: "M4 5H4.00898",
|
|
145
|
+
stroke: strokeColor,
|
|
146
|
+
strokeWidth: stroke,
|
|
147
|
+
strokeLinecap: "round",
|
|
148
|
+
strokeLinejoin: "round"
|
|
149
|
+
}), jsxRuntime.jsx("path", {
|
|
150
|
+
d: "M4 12H4.00898",
|
|
151
|
+
stroke: strokeColor,
|
|
152
|
+
strokeWidth: stroke,
|
|
153
|
+
strokeLinecap: "round",
|
|
154
|
+
strokeLinejoin: "round"
|
|
155
|
+
}), jsxRuntime.jsx("path", {
|
|
156
|
+
d: "M4 19H4.00898",
|
|
157
|
+
stroke: strokeColor,
|
|
158
|
+
strokeWidth: stroke,
|
|
159
|
+
strokeLinecap: "round",
|
|
160
|
+
strokeLinejoin: "round"
|
|
161
|
+
}), jsxRuntime.jsx("path", {
|
|
162
|
+
d: "M8 12L20 12",
|
|
163
|
+
stroke: strokeColor,
|
|
164
|
+
strokeWidth: stroke,
|
|
165
|
+
strokeLinecap: "round"
|
|
166
|
+
}), jsxRuntime.jsx("path", {
|
|
167
|
+
d: "M8 19L20 19",
|
|
168
|
+
stroke: strokeColor,
|
|
169
|
+
strokeWidth: stroke,
|
|
170
|
+
strokeLinecap: "round"
|
|
171
|
+
}) ]
|
|
172
|
+
})
|
|
173
|
+
} ], [ "numbered list", {
|
|
174
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
175
|
+
children: [ jsxRuntime.jsx("path", {
|
|
176
|
+
d: "M11 6L21 6",
|
|
177
|
+
stroke: strokeColor,
|
|
178
|
+
strokeWidth: stroke,
|
|
179
|
+
strokeLinecap: "round"
|
|
180
|
+
}), jsxRuntime.jsx("path", {
|
|
181
|
+
d: "M11 12L21 12",
|
|
182
|
+
stroke: strokeColor,
|
|
183
|
+
strokeWidth: stroke,
|
|
184
|
+
strokeLinecap: "round"
|
|
185
|
+
}), jsxRuntime.jsx("path", {
|
|
186
|
+
d: "M11 18L21 18",
|
|
187
|
+
stroke: strokeColor,
|
|
188
|
+
strokeWidth: stroke,
|
|
189
|
+
strokeLinecap: "round"
|
|
190
|
+
}), jsxRuntime.jsx("path", {
|
|
191
|
+
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",
|
|
192
|
+
stroke: strokeColor,
|
|
193
|
+
strokeWidth: stroke,
|
|
194
|
+
strokeLinecap: "round",
|
|
195
|
+
strokeLinejoin: "round"
|
|
196
|
+
}), jsxRuntime.jsx("path", {
|
|
197
|
+
d: "M3 3H4.2C4.36569 3 4.5 3.13431 4.5 3.3V9M4.5 9H3M4.5 9H6",
|
|
198
|
+
stroke: strokeColor,
|
|
199
|
+
strokeWidth: stroke,
|
|
200
|
+
strokeLinecap: "round",
|
|
201
|
+
strokeLinejoin: "round"
|
|
202
|
+
}) ]
|
|
203
|
+
})
|
|
204
|
+
} ], [ "sink", {
|
|
205
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
206
|
+
children: [ jsxRuntime.jsx("path", {
|
|
207
|
+
d: "M15 4.5H20",
|
|
208
|
+
stroke: strokeColor,
|
|
209
|
+
strokeWidth: stroke,
|
|
210
|
+
strokeLinecap: "round",
|
|
211
|
+
strokeLinejoin: "round"
|
|
212
|
+
}), jsxRuntime.jsx("path", {
|
|
213
|
+
d: "M15 9.5H18",
|
|
214
|
+
stroke: strokeColor,
|
|
215
|
+
strokeWidth: stroke,
|
|
216
|
+
strokeLinecap: "round",
|
|
217
|
+
strokeLinejoin: "round"
|
|
218
|
+
}), jsxRuntime.jsx("path", {
|
|
219
|
+
d: "M15 14.5H20",
|
|
220
|
+
stroke: strokeColor,
|
|
221
|
+
strokeWidth: stroke,
|
|
222
|
+
strokeLinecap: "round",
|
|
223
|
+
strokeLinejoin: "round"
|
|
224
|
+
}), jsxRuntime.jsx("path", {
|
|
225
|
+
d: "M15 19.5H18",
|
|
226
|
+
stroke: strokeColor,
|
|
227
|
+
strokeWidth: stroke,
|
|
228
|
+
strokeLinecap: "round",
|
|
229
|
+
strokeLinejoin: "round"
|
|
230
|
+
}), jsxRuntime.jsx("path", {
|
|
231
|
+
d: "M11 3V21",
|
|
232
|
+
stroke: strokeColor,
|
|
233
|
+
strokeWidth: stroke,
|
|
234
|
+
strokeLinecap: "round",
|
|
235
|
+
strokeLinejoin: "round"
|
|
236
|
+
}), jsxRuntime.jsx("path", {
|
|
237
|
+
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",
|
|
238
|
+
stroke: strokeColor,
|
|
239
|
+
strokeWidth: stroke,
|
|
240
|
+
strokeLinecap: "round",
|
|
241
|
+
strokeLinejoin: "round"
|
|
242
|
+
}) ]
|
|
243
|
+
})
|
|
244
|
+
} ], [ "lift", {
|
|
245
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
246
|
+
children: [ jsxRuntime.jsx("path", {
|
|
247
|
+
d: "M4 4.5H9",
|
|
248
|
+
stroke: strokeColor,
|
|
249
|
+
strokeWidth: stroke,
|
|
250
|
+
strokeLinecap: "round",
|
|
251
|
+
strokeLinejoin: "round"
|
|
252
|
+
}), jsxRuntime.jsx("path", {
|
|
253
|
+
d: "M6 9.5H9",
|
|
254
|
+
stroke: strokeColor,
|
|
255
|
+
strokeWidth: stroke,
|
|
256
|
+
strokeLinecap: "round",
|
|
257
|
+
strokeLinejoin: "round"
|
|
258
|
+
}), jsxRuntime.jsx("path", {
|
|
259
|
+
d: "M4 14.5H9",
|
|
260
|
+
stroke: strokeColor,
|
|
261
|
+
strokeWidth: stroke,
|
|
262
|
+
strokeLinecap: "round",
|
|
263
|
+
strokeLinejoin: "round"
|
|
264
|
+
}), jsxRuntime.jsx("path", {
|
|
265
|
+
d: "M6 19.5H9",
|
|
266
|
+
stroke: strokeColor,
|
|
267
|
+
strokeWidth: stroke,
|
|
268
|
+
strokeLinecap: "round",
|
|
269
|
+
strokeLinejoin: "round"
|
|
270
|
+
}), jsxRuntime.jsx("path", {
|
|
271
|
+
d: "M13 3V21",
|
|
272
|
+
stroke: strokeColor,
|
|
273
|
+
strokeWidth: stroke,
|
|
274
|
+
strokeLinecap: "round",
|
|
275
|
+
strokeLinejoin: "round"
|
|
276
|
+
}), jsxRuntime.jsx("path", {
|
|
277
|
+
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",
|
|
278
|
+
stroke: strokeColor,
|
|
279
|
+
strokeWidth: stroke,
|
|
280
|
+
strokeLinecap: "round",
|
|
281
|
+
strokeLinejoin: "round"
|
|
282
|
+
}) ]
|
|
283
|
+
})
|
|
284
|
+
} ], [ "code", {
|
|
285
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
286
|
+
children: [ jsxRuntime.jsx("path", {
|
|
287
|
+
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",
|
|
288
|
+
stroke: strokeColor,
|
|
289
|
+
strokeWidth: stroke,
|
|
290
|
+
strokeLinecap: "round",
|
|
291
|
+
strokeLinejoin: "round"
|
|
292
|
+
}), jsxRuntime.jsx("path", {
|
|
293
|
+
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",
|
|
294
|
+
stroke: strokeColor,
|
|
295
|
+
strokeWidth: stroke,
|
|
296
|
+
strokeLinecap: "round",
|
|
297
|
+
strokeLinejoin: "round"
|
|
298
|
+
}), jsxRuntime.jsx("path", {
|
|
299
|
+
d: "M14.5 4L9.5 20",
|
|
300
|
+
stroke: strokeColor,
|
|
301
|
+
strokeWidth: stroke,
|
|
302
|
+
strokeLinecap: "round",
|
|
303
|
+
strokeLinejoin: "round"
|
|
304
|
+
}) ]
|
|
305
|
+
})
|
|
306
|
+
} ], [ "like", {
|
|
307
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
308
|
+
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",
|
|
309
|
+
fill: "transparent",
|
|
310
|
+
strokeWidth: stroke,
|
|
311
|
+
stroke: strokeColor,
|
|
312
|
+
strokeMiterlimit: "10",
|
|
313
|
+
strokeDasharray: ""
|
|
314
|
+
})
|
|
315
|
+
} ], [ "unlike", {
|
|
316
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
317
|
+
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",
|
|
318
|
+
fill: "transparent",
|
|
319
|
+
strokeWidth: stroke,
|
|
320
|
+
stroke: strokeColor,
|
|
321
|
+
strokeMiterlimit: "10",
|
|
322
|
+
strokeDasharray: ""
|
|
323
|
+
})
|
|
324
|
+
} ], [ "stop", {
|
|
325
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
326
|
+
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",
|
|
327
|
+
fill: strokeColor
|
|
328
|
+
})
|
|
329
|
+
} ], [ "copy", {
|
|
330
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
331
|
+
children: [ jsxRuntime.jsx("path", {
|
|
332
|
+
d: "M 0 0 L 20 0 L 20 20 L 0 20 Z",
|
|
333
|
+
fill: "transparent"
|
|
334
|
+
}), jsxRuntime.jsx("path", {
|
|
335
|
+
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",
|
|
336
|
+
fill: "transparent",
|
|
337
|
+
strokeWidth: stroke,
|
|
338
|
+
stroke: strokeColor,
|
|
339
|
+
strokeLinejoin: "round",
|
|
340
|
+
strokeMiterlimit: "10"
|
|
341
|
+
}), jsxRuntime.jsx("path", {
|
|
342
|
+
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",
|
|
343
|
+
fill: "transparent",
|
|
344
|
+
strokeWidth: stroke,
|
|
345
|
+
stroke: strokeColor,
|
|
346
|
+
strokeLinejoin: "round",
|
|
347
|
+
strokeMiterlimit: "10"
|
|
348
|
+
}) ]
|
|
349
|
+
})
|
|
350
|
+
} ], [ "font smaller", {
|
|
351
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
352
|
+
children: [ jsxRuntime.jsx("path", {
|
|
353
|
+
d: "M 0 0 L 20 0 L 20 20 L 0 20 Z",
|
|
354
|
+
fill: "transparent"
|
|
355
|
+
}), jsxRuntime.jsx("path", {
|
|
356
|
+
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",
|
|
357
|
+
fill: strokeColor
|
|
358
|
+
}) ]
|
|
359
|
+
})
|
|
360
|
+
} ], [ "font larger", {
|
|
361
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
362
|
+
children: [ jsxRuntime.jsx("path", {
|
|
363
|
+
d: "M 0 0 L 20 0 L 20 20 L 0 20 Z",
|
|
364
|
+
fill: "transparent"
|
|
365
|
+
}), jsxRuntime.jsx("path", {
|
|
366
|
+
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",
|
|
367
|
+
fill: strokeColor
|
|
368
|
+
}) ]
|
|
369
|
+
})
|
|
370
|
+
} ], [ "bar chart", {
|
|
371
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
372
|
+
children: [ jsxRuntime.jsx("path", {
|
|
373
|
+
d: "M 0 0 L 20 0 L 20 20 L 0 20 Z",
|
|
374
|
+
fill: "transparent"
|
|
375
|
+
}), jsxRuntime.jsx("path", {
|
|
376
|
+
d: "M 2 2.5 L 2 17 L 18.5 17",
|
|
377
|
+
fill: "transparent",
|
|
378
|
+
strokeWidth: stroke,
|
|
379
|
+
stroke: strokeColor,
|
|
380
|
+
strokeLinejoin: "round"
|
|
381
|
+
}), jsxRuntime.jsx("path", {
|
|
382
|
+
d: "M 6.5 9 L 6.5 14",
|
|
383
|
+
fill: "transparent",
|
|
384
|
+
strokeWidth: stroke,
|
|
385
|
+
stroke: strokeColor
|
|
386
|
+
}), jsxRuntime.jsx("path", {
|
|
387
|
+
d: "M 10.451 5 L 10.451 14",
|
|
388
|
+
fill: "transparent",
|
|
389
|
+
strokeWidth: stroke,
|
|
390
|
+
stroke: strokeColor
|
|
391
|
+
}), jsxRuntime.jsx("path", {
|
|
392
|
+
d: "M 14.5 7 L 14.5 14",
|
|
393
|
+
fill: "transparent",
|
|
394
|
+
strokeWidth: stroke,
|
|
395
|
+
stroke: strokeColor
|
|
396
|
+
}) ]
|
|
397
|
+
})
|
|
398
|
+
} ], [ "briefcase", {
|
|
399
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
400
|
+
children: [ jsxRuntime.jsx("path", {
|
|
401
|
+
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",
|
|
402
|
+
fill: strokeColor
|
|
403
|
+
}), jsxRuntime.jsx("path", {
|
|
404
|
+
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",
|
|
405
|
+
fill: strokeColor
|
|
406
|
+
}) ]
|
|
407
|
+
})
|
|
408
|
+
} ], [ "globe location", {
|
|
409
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs("g", {
|
|
410
|
+
transform: "translate(2 2.5)",
|
|
411
|
+
children: [ jsxRuntime.jsx("path", {
|
|
412
|
+
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",
|
|
413
|
+
fill: "transparent",
|
|
414
|
+
strokeWidth: stroke,
|
|
415
|
+
stroke: strokeColor,
|
|
416
|
+
strokeLinejoin: "round",
|
|
417
|
+
strokeDasharray: ""
|
|
418
|
+
}), jsxRuntime.jsx("path", {
|
|
419
|
+
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",
|
|
420
|
+
fill: "transparent",
|
|
421
|
+
strokeWidth: stroke,
|
|
422
|
+
stroke: strokeColor,
|
|
423
|
+
strokeLinejoin: "round",
|
|
424
|
+
strokeDasharray: ""
|
|
425
|
+
}), jsxRuntime.jsx("path", {
|
|
426
|
+
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",
|
|
427
|
+
fill: strokeColor
|
|
428
|
+
}) ]
|
|
429
|
+
})
|
|
430
|
+
} ], [ "focus", {
|
|
431
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
432
|
+
children: [ jsxRuntime.jsx("path", {
|
|
433
|
+
d: "M 0 0 L 20 0 L 20 20 L 0 20 Z",
|
|
434
|
+
fill: "transparent"
|
|
435
|
+
}), jsxRuntime.jsx("path", {
|
|
436
|
+
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",
|
|
437
|
+
fill: strokeColor
|
|
438
|
+
}), jsxRuntime.jsx("path", {
|
|
439
|
+
d: "M 5.492 12.657 L 6.03 11.706 L 13.892 16.157 L 13.353 17.109 Z",
|
|
440
|
+
fill: strokeColor
|
|
441
|
+
}), jsxRuntime.jsx("path", {
|
|
442
|
+
d: "M 5.112 7.527 L 6.206 7.519 L 6.282 16.553 L 5.188 16.562 Z",
|
|
443
|
+
fill: strokeColor
|
|
444
|
+
}), jsxRuntime.jsx("path", {
|
|
445
|
+
d: "M 1.573 9.2 L 9.36 4.62 L 9.914 5.563 L 2.127 10.144 Z",
|
|
446
|
+
fill: strokeColor
|
|
447
|
+
}), jsxRuntime.jsx("path", {
|
|
448
|
+
d: "M 5.605 3.344 L 6.143 2.392 L 14.005 6.844 L 13.465 7.795 Z",
|
|
449
|
+
fill: strokeColor
|
|
450
|
+
}), jsxRuntime.jsx("path", {
|
|
451
|
+
d: "M 13.223 2.953 L 14.316 2.945 L 14.392 11.979 L 13.298 11.988 Z",
|
|
452
|
+
fill: strokeColor
|
|
453
|
+
}), jsxRuntime.jsx("path", {
|
|
454
|
+
d: "M 9.579 13.946 L 17.366 9.365 L 17.92 10.308 L 10.133 14.888 Z",
|
|
455
|
+
fill: strokeColor
|
|
456
|
+
}) ]
|
|
457
|
+
})
|
|
458
|
+
} ], [ "chart arrow", {
|
|
459
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
460
|
+
children: [ jsxRuntime.jsx("path", {
|
|
461
|
+
d: "M 0 0 L 20 0 L 20 20 L 0 20 Z",
|
|
462
|
+
fill: "transparent"
|
|
463
|
+
}), jsxRuntime.jsxs("g", {
|
|
464
|
+
transform: "translate(3.5 6)",
|
|
465
|
+
children: [ jsxRuntime.jsx("path", {
|
|
466
|
+
d: "M 0 8 L 4.5 3.5 L 7.5 6 L 12.5 0.5",
|
|
467
|
+
fill: "transparent",
|
|
468
|
+
strokeWidth: stroke,
|
|
469
|
+
stroke: strokeColor,
|
|
470
|
+
strokeLinecap: "square",
|
|
471
|
+
strokeMiterlimit: "10",
|
|
472
|
+
strokeDasharray: ""
|
|
473
|
+
}), jsxRuntime.jsx("path", {
|
|
474
|
+
d: "M 0.876 5.957 L 3.387 2.87 L 0 0",
|
|
475
|
+
transform: "translate(10.018 -1.785) rotate(-40 1.694 2.978)",
|
|
476
|
+
fill: "transparent",
|
|
477
|
+
strokeWidth: stroke,
|
|
478
|
+
stroke: strokeColor,
|
|
479
|
+
strokeLinecap: "square",
|
|
480
|
+
strokeMiterlimit: "10",
|
|
481
|
+
strokeDasharray: ""
|
|
482
|
+
}) ]
|
|
483
|
+
}) ]
|
|
484
|
+
})
|
|
485
|
+
} ], [ "document editor", {
|
|
486
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
487
|
+
children: [ jsxRuntime.jsxs("g", {
|
|
488
|
+
children: [ jsxRuntime.jsxs("defs", {
|
|
489
|
+
children: [ jsxRuntime.jsx("path", {
|
|
490
|
+
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",
|
|
491
|
+
id: "a1000z"
|
|
492
|
+
}), jsxRuntime.jsx("clipPath", {
|
|
493
|
+
id: "a1001z",
|
|
494
|
+
children: jsxRuntime.jsx("use", {
|
|
495
|
+
xlinkHref: "#a1000z"
|
|
496
|
+
})
|
|
497
|
+
}) ]
|
|
498
|
+
}), jsxRuntime.jsx("use", {
|
|
499
|
+
xlinkHref: "#a1000z",
|
|
500
|
+
fill: "transparent",
|
|
501
|
+
clipPath: "url(#a1001z)",
|
|
502
|
+
strokeWidth: "3.1",
|
|
503
|
+
stroke: strokeColor
|
|
504
|
+
}) ]
|
|
505
|
+
}), jsxRuntime.jsxs("g", {
|
|
506
|
+
transform: "translate(7 9.25)",
|
|
507
|
+
children: [ jsxRuntime.jsx("path", {
|
|
508
|
+
d: "M 0 1.5 L 4.5 1.5 L 4.5 0 L 0 0 Z",
|
|
509
|
+
fill: strokeColor
|
|
510
|
+
}), jsxRuntime.jsx("path", {
|
|
511
|
+
d: "M 6 5.5 L 0 5.5 L 0 4 L 6 4 Z",
|
|
512
|
+
fill: strokeColor
|
|
513
|
+
}) ]
|
|
514
|
+
}) ]
|
|
515
|
+
})
|
|
516
|
+
} ], [ "settings", {
|
|
517
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
518
|
+
children: [ jsxRuntime.jsx("path", {
|
|
519
|
+
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",
|
|
520
|
+
fill: strokeColor
|
|
521
|
+
}), jsxRuntime.jsx("path", {
|
|
522
|
+
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",
|
|
523
|
+
fill: strokeColor
|
|
524
|
+
}), jsxRuntime.jsx("path", {
|
|
525
|
+
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",
|
|
526
|
+
fill: "transparent",
|
|
527
|
+
strokeWidth: stroke,
|
|
528
|
+
stroke: strokeColor,
|
|
529
|
+
strokeMiterlimit: "10",
|
|
530
|
+
strokeDasharray: ""
|
|
531
|
+
}), jsxRuntime.jsx("path", {
|
|
532
|
+
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",
|
|
533
|
+
fill: "transparent",
|
|
534
|
+
strokeWidth: stroke,
|
|
535
|
+
stroke: strokeColor,
|
|
536
|
+
strokeMiterlimit: "10",
|
|
537
|
+
strokeDasharray: ""
|
|
538
|
+
}) ]
|
|
539
|
+
})
|
|
540
|
+
} ], [ "light bulb", {
|
|
541
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
542
|
+
children: [ jsxRuntime.jsx("path", {
|
|
543
|
+
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",
|
|
544
|
+
fill: "transparent",
|
|
545
|
+
strokeWidth: stroke,
|
|
546
|
+
stroke: strokeColor
|
|
547
|
+
}), jsxRuntime.jsx("path", {
|
|
548
|
+
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",
|
|
549
|
+
fill: strokeColor
|
|
550
|
+
}), jsxRuntime.jsx("path", {
|
|
551
|
+
d: "M 6.5 15 L 13.5 15",
|
|
552
|
+
fill: "transparent",
|
|
553
|
+
strokeWidth: stroke,
|
|
554
|
+
stroke: strokeColor
|
|
555
|
+
}), jsxRuntime.jsx("path", {
|
|
556
|
+
d: "M 7.5 18 L 12.5 18",
|
|
557
|
+
fill: "transparent",
|
|
558
|
+
strokeWidth: stroke,
|
|
559
|
+
stroke: strokeColor
|
|
560
|
+
}) ]
|
|
561
|
+
})
|
|
562
|
+
} ], [ "issue", {
|
|
563
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
564
|
+
children: [ jsxRuntime.jsx("path", {
|
|
565
|
+
d: "M 10 11.667 L 10.008 11.667",
|
|
566
|
+
fill: "transparent",
|
|
567
|
+
strokeWidth: stroke,
|
|
568
|
+
stroke: strokeColor,
|
|
569
|
+
strokeLinecap: "round",
|
|
570
|
+
strokeLinejoin: "round"
|
|
571
|
+
}), jsxRuntime.jsx("path", {
|
|
572
|
+
d: "M 10 9.167 L 10 5.833",
|
|
573
|
+
fill: "transparent",
|
|
574
|
+
strokeWidth: stroke,
|
|
575
|
+
stroke: strokeColor,
|
|
576
|
+
strokeLinecap: "round",
|
|
577
|
+
strokeLinejoin: "round"
|
|
578
|
+
}), jsxRuntime.jsx("path", {
|
|
579
|
+
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",
|
|
580
|
+
fill: "transparent",
|
|
581
|
+
strokeWidth: stroke,
|
|
582
|
+
stroke: strokeColor
|
|
583
|
+
}), jsxRuntime.jsx("path", {
|
|
584
|
+
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",
|
|
585
|
+
fill: "transparent",
|
|
586
|
+
strokeWidth: stroke,
|
|
587
|
+
stroke: strokeColor
|
|
588
|
+
}) ]
|
|
589
|
+
})
|
|
590
|
+
} ], [ "chart", {
|
|
591
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
592
|
+
children: [ jsxRuntime.jsx("path", {
|
|
593
|
+
d: "M 0 0 L 20 0 L 20 20 L 0 20 Z",
|
|
594
|
+
fill: "transparent"
|
|
595
|
+
}), jsxRuntime.jsx("path", {
|
|
596
|
+
d: "M 5 12 L 9 8 L 12.5 11.5 L 16.5 7.5",
|
|
597
|
+
fill: "transparent",
|
|
598
|
+
strokeWidth: stroke,
|
|
599
|
+
stroke: strokeColor,
|
|
600
|
+
strokeLinecap: "square",
|
|
601
|
+
strokeMiterlimit: "10",
|
|
602
|
+
strokeDasharray: ""
|
|
603
|
+
}), jsxRuntime.jsx("path", {
|
|
604
|
+
d: "M 2 2.5 L 2 17 L 18.5 17",
|
|
605
|
+
fill: "transparent",
|
|
606
|
+
strokeWidth: stroke,
|
|
607
|
+
stroke: strokeColor,
|
|
608
|
+
strokeLinejoin: "round"
|
|
609
|
+
}) ]
|
|
610
|
+
})
|
|
611
|
+
} ], [ "chat", {
|
|
612
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
613
|
+
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",
|
|
614
|
+
fill: strokeColor
|
|
615
|
+
})
|
|
616
|
+
} ], [ "exclamation", {
|
|
617
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
618
|
+
children: [ jsxRuntime.jsx("path", {
|
|
619
|
+
d: "M 1 1 L 19 1 L 19 19 L 1 19 Z",
|
|
620
|
+
fill: "transparent"
|
|
621
|
+
}), jsxRuntime.jsxs("g", {
|
|
622
|
+
transform: "translate(8.75 4)",
|
|
623
|
+
children: [ jsxRuntime.jsx("path", {
|
|
624
|
+
d: "M 2.471 7.765 L 2.471 0 L 0.353 0 L 0.353 7.765 Z",
|
|
625
|
+
fill: strokeColor
|
|
626
|
+
}), jsxRuntime.jsx("path", {
|
|
627
|
+
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",
|
|
628
|
+
fill: strokeColor
|
|
629
|
+
}) ]
|
|
630
|
+
}) ]
|
|
631
|
+
})
|
|
632
|
+
} ], [ "undo", {
|
|
633
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
634
|
+
children: [ jsxRuntime.jsx("path", {
|
|
635
|
+
d: "M 13.5 2 L 15.5 2 L 11.5 2 L 11.5 6",
|
|
636
|
+
fill: "transparent",
|
|
637
|
+
strokeWidth: stroke,
|
|
638
|
+
stroke: strokeColor
|
|
639
|
+
}), jsxRuntime.jsx("path", {
|
|
640
|
+
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",
|
|
641
|
+
fill: strokeColor
|
|
642
|
+
}), jsxRuntime.jsx("path", {
|
|
643
|
+
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",
|
|
644
|
+
fill: strokeColor
|
|
645
|
+
}) ]
|
|
646
|
+
})
|
|
647
|
+
} ], [ "character beam", {
|
|
648
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
649
|
+
children: [ jsxRuntime.jsx("path", {
|
|
650
|
+
d: "M 0 0 L 24 0 L 24 24 L 0 24 Z",
|
|
651
|
+
fill: "transparent"
|
|
652
|
+
}), jsxRuntime.jsxs("g", {
|
|
653
|
+
transform: "translate(2 3.5)",
|
|
654
|
+
children: [ jsxRuntime.jsx("path", {
|
|
655
|
+
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",
|
|
656
|
+
fill: strokeColor
|
|
657
|
+
}), jsxRuntime.jsx("path", {
|
|
658
|
+
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",
|
|
659
|
+
fill: "transparent",
|
|
660
|
+
strokeWidth: stroke,
|
|
661
|
+
stroke: strokeColor
|
|
662
|
+
}) ]
|
|
663
|
+
}) ]
|
|
664
|
+
})
|
|
665
|
+
} ], [ "edit", {
|
|
666
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
667
|
+
fillRule: "evenodd",
|
|
668
|
+
clipRule: "evenodd",
|
|
669
|
+
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",
|
|
670
|
+
fill: strokeColor
|
|
671
|
+
})
|
|
672
|
+
} ], [ "compliance check", {
|
|
673
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
674
|
+
children: [ jsxRuntime.jsx("path", {
|
|
675
|
+
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",
|
|
676
|
+
stroke: strokeColor,
|
|
677
|
+
strokeWidth: stroke
|
|
678
|
+
}), jsxRuntime.jsx("path", {
|
|
679
|
+
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",
|
|
680
|
+
stroke: strokeColor,
|
|
681
|
+
strokeWidth: stroke
|
|
682
|
+
}) ]
|
|
683
|
+
})
|
|
684
|
+
} ], [ "text document", {
|
|
685
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
686
|
+
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",
|
|
687
|
+
fill: strokeColor
|
|
688
|
+
})
|
|
689
|
+
} ], [ "mail", {
|
|
690
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
691
|
+
children: [ jsxRuntime.jsx("path", {
|
|
692
|
+
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",
|
|
693
|
+
fill: "transparent",
|
|
694
|
+
strokeWidth: stroke,
|
|
695
|
+
stroke: strokeColor
|
|
696
|
+
}), jsxRuntime.jsx("path", {
|
|
697
|
+
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",
|
|
698
|
+
fill: strokeColor
|
|
699
|
+
}), jsxRuntime.jsx("path", {
|
|
700
|
+
d: "M 11.5 8 L 4.5 8",
|
|
701
|
+
fill: "transparent",
|
|
702
|
+
strokeWidth: stroke,
|
|
703
|
+
stroke: strokeColor
|
|
704
|
+
}), jsxRuntime.jsx("path", {
|
|
705
|
+
d: "M 9.75 11 L 4.5 11",
|
|
706
|
+
fill: "transparent",
|
|
707
|
+
strokeWidth: stroke,
|
|
708
|
+
stroke: strokeColor
|
|
709
|
+
}) ]
|
|
710
|
+
})
|
|
711
|
+
} ], [ "concise", {
|
|
712
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
713
|
+
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",
|
|
714
|
+
fill: strokeColor
|
|
715
|
+
})
|
|
716
|
+
} ], [ "moderate", {
|
|
717
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
718
|
+
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",
|
|
719
|
+
fill: strokeColor
|
|
720
|
+
})
|
|
721
|
+
} ], [ "expanded", {
|
|
722
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
723
|
+
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",
|
|
724
|
+
fill: strokeColor
|
|
725
|
+
})
|
|
726
|
+
} ], [ "open circle", {
|
|
727
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
728
|
+
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",
|
|
729
|
+
fill: "transparent",
|
|
730
|
+
strokeWidth: stroke,
|
|
731
|
+
stroke: strokeColor
|
|
732
|
+
})
|
|
733
|
+
} ], [ "view", {
|
|
734
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
735
|
+
children: [ jsxRuntime.jsx("path", {
|
|
736
|
+
d: "M 1 1 L 19 1 L 19 19 L 1 19 Z",
|
|
737
|
+
fill: "transparent"
|
|
738
|
+
}), jsxRuntime.jsx("path", {
|
|
739
|
+
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",
|
|
740
|
+
fill: strokeColor
|
|
741
|
+
}), jsxRuntime.jsx("path", {
|
|
742
|
+
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",
|
|
743
|
+
fill: strokeColor
|
|
744
|
+
}) ]
|
|
745
|
+
}),
|
|
746
|
+
lineOn: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
747
|
+
children: [ jsxRuntime.jsx("path", {
|
|
748
|
+
d: "M 1 1 L 19 1 L 19 19 L 1 19 Z",
|
|
749
|
+
fill: "transparent"
|
|
750
|
+
}), jsxRuntime.jsx("path", {
|
|
751
|
+
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",
|
|
752
|
+
fill: strokeColor
|
|
753
|
+
}) ]
|
|
754
|
+
})
|
|
755
|
+
} ], [ "apple", {
|
|
756
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
757
|
+
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",
|
|
758
|
+
fill: strokeColor
|
|
759
|
+
})
|
|
760
|
+
} ], [ "linkedin", {
|
|
761
|
+
line: _props => jsxRuntime.jsx("path", {
|
|
762
|
+
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",
|
|
763
|
+
fill: "rgb(10, 102, 194)"
|
|
764
|
+
})
|
|
765
|
+
} ], [ "google", {
|
|
766
|
+
line: _props => jsxRuntime.jsxs("g", {
|
|
767
|
+
transform: "translate(1.05 1.197)",
|
|
768
|
+
children: [ jsxRuntime.jsx("path", {
|
|
769
|
+
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",
|
|
770
|
+
fill: "rgb(229,67,53)"
|
|
771
|
+
}), jsxRuntime.jsx("path", {
|
|
772
|
+
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",
|
|
773
|
+
fill: "rgb(246,183,4)"
|
|
774
|
+
}), jsxRuntime.jsx("path", {
|
|
775
|
+
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",
|
|
776
|
+
fill: "rgb(52,163,83)"
|
|
777
|
+
}), jsxRuntime.jsx("path", {
|
|
778
|
+
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",
|
|
779
|
+
fill: "rgb(66,128,239)"
|
|
780
|
+
}) ]
|
|
781
|
+
})
|
|
782
|
+
} ], [ "dollar", {
|
|
783
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
784
|
+
children: [ jsxRuntime.jsx("path", {
|
|
785
|
+
d: "M 1 1 L 19 1 L 19 19 L 1 19 Z",
|
|
786
|
+
fill: "transparent"
|
|
787
|
+
}), jsxRuntime.jsx("path", {
|
|
788
|
+
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",
|
|
789
|
+
fill: strokeColor
|
|
790
|
+
}), jsxRuntime.jsx("path", {
|
|
791
|
+
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",
|
|
792
|
+
fill: strokeColor
|
|
793
|
+
}) ]
|
|
794
|
+
})
|
|
795
|
+
} ], [ "trash bin", {
|
|
796
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
797
|
+
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",
|
|
798
|
+
fill: strokeColor
|
|
799
|
+
})
|
|
800
|
+
} ], [ "recent chats", {
|
|
801
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
802
|
+
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",
|
|
803
|
+
fill: strokeColor
|
|
804
|
+
})
|
|
805
|
+
} ], [ "refresh", {
|
|
806
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
807
|
+
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",
|
|
808
|
+
fill: strokeColor
|
|
809
|
+
})
|
|
810
|
+
} ], [ "document", {
|
|
811
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
812
|
+
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",
|
|
813
|
+
fill: "transparent",
|
|
814
|
+
strokeWidth: stroke,
|
|
815
|
+
stroke: strokeColor,
|
|
816
|
+
strokeMiterlimit: "10",
|
|
817
|
+
strokeDasharray: ""
|
|
818
|
+
})
|
|
819
|
+
} ], [ "navigate", {
|
|
820
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs("g", {
|
|
821
|
+
transform: "translate(2 4)",
|
|
822
|
+
children: [ jsxRuntime.jsx("path", {
|
|
823
|
+
d: "M 0 0 L 16 0 L 16 11.207 L 0 11.207 Z",
|
|
824
|
+
fill: "transparent"
|
|
825
|
+
}), jsxRuntime.jsx("path", {
|
|
826
|
+
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",
|
|
827
|
+
fill: "transparent",
|
|
828
|
+
strokeWidth: stroke,
|
|
829
|
+
stroke: strokeColor,
|
|
830
|
+
strokeMiterlimit: "10",
|
|
831
|
+
strokeDasharray: ""
|
|
832
|
+
}), jsxRuntime.jsx("path", {
|
|
833
|
+
d: "M 10.62 8.972 L 14.81 4.78 L 10.62 0.588",
|
|
834
|
+
fill: "transparent",
|
|
835
|
+
strokeWidth: stroke,
|
|
836
|
+
stroke: strokeColor,
|
|
837
|
+
strokeMiterlimit: "10",
|
|
838
|
+
strokeDasharray: ""
|
|
839
|
+
}) ]
|
|
840
|
+
})
|
|
841
|
+
} ], [ "arrow right", {
|
|
842
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
843
|
+
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",
|
|
844
|
+
fill: strokeColor
|
|
845
|
+
})
|
|
846
|
+
} ], [ "arrow left", {
|
|
847
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
848
|
+
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",
|
|
849
|
+
fill: strokeColor
|
|
850
|
+
})
|
|
851
|
+
} ], [ "", {
|
|
852
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
853
|
+
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",
|
|
854
|
+
fill: strokeColor
|
|
855
|
+
})
|
|
856
|
+
} ], [ "arrow up", {
|
|
857
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
858
|
+
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",
|
|
859
|
+
fill: strokeColor
|
|
860
|
+
})
|
|
861
|
+
} ], [ "notification", {
|
|
862
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
863
|
+
children: [ jsxRuntime.jsx("path", {
|
|
864
|
+
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",
|
|
865
|
+
strokeWidth: stroke,
|
|
866
|
+
stroke: strokeColor
|
|
867
|
+
}), jsxRuntime.jsx("path", {
|
|
868
|
+
d: "M 14 12 L 6 12",
|
|
869
|
+
fill: "transparent",
|
|
870
|
+
strokeWidth: stroke,
|
|
871
|
+
stroke: strokeColor
|
|
872
|
+
}), jsxRuntime.jsx("path", {
|
|
873
|
+
d: "M 12 8 L 6 8",
|
|
874
|
+
fill: "transparent",
|
|
875
|
+
strokeWidth: stroke,
|
|
876
|
+
stroke: strokeColor
|
|
877
|
+
}) ]
|
|
878
|
+
})
|
|
879
|
+
} ], [ "alert", {
|
|
880
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
881
|
+
children: [ jsxRuntime.jsx("path", {
|
|
882
|
+
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",
|
|
883
|
+
fill: strokeColor
|
|
884
|
+
}), jsxRuntime.jsx("path", {
|
|
885
|
+
d: "M 1 1 L 19 1 L 19 19 L 1 19 Z",
|
|
886
|
+
fill: "transparent"
|
|
887
|
+
}) ]
|
|
888
|
+
})
|
|
889
|
+
} ], [ "message", {
|
|
890
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
891
|
+
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",
|
|
892
|
+
fill: strokeColor
|
|
893
|
+
})
|
|
894
|
+
} ], [ "blank", {
|
|
895
|
+
line: _props => jsxRuntime.jsx(jsxRuntime.Fragment, {})
|
|
896
|
+
} ], [ "check", {
|
|
897
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
898
|
+
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",
|
|
899
|
+
fill: strokeColor
|
|
900
|
+
})
|
|
901
|
+
} ], [ "help", {
|
|
902
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
903
|
+
children: [ jsxRuntime.jsx("path", {
|
|
904
|
+
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",
|
|
905
|
+
fill: strokeColor
|
|
906
|
+
}), jsxRuntime.jsx("path", {
|
|
907
|
+
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",
|
|
908
|
+
fill: strokeColor
|
|
909
|
+
}), jsxRuntime.jsx("path", {
|
|
910
|
+
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",
|
|
911
|
+
fill: strokeColor
|
|
912
|
+
}) ]
|
|
913
|
+
})
|
|
914
|
+
} ], [ "menu", {
|
|
915
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
916
|
+
fillRule: "evenodd",
|
|
917
|
+
clipRule: "evenodd",
|
|
918
|
+
d: "M18 6.25H2v1.5h16v-1.5Zm0 6H2v1.5h16v-1.5Z",
|
|
919
|
+
fill: strokeColor
|
|
920
|
+
})
|
|
921
|
+
} ], [ "attach", {
|
|
922
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
923
|
+
children: [ jsxRuntime.jsx("g", {
|
|
924
|
+
clipPath: "url(#a)",
|
|
925
|
+
children: jsxRuntime.jsx("path", {
|
|
926
|
+
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",
|
|
927
|
+
stroke: strokeColor,
|
|
928
|
+
strokeWidth: stroke
|
|
929
|
+
})
|
|
930
|
+
}), jsxRuntime.jsx("defs", {
|
|
931
|
+
children: jsxRuntime.jsx("clipPath", {
|
|
932
|
+
id: "a",
|
|
933
|
+
children: jsxRuntime.jsx("path", {
|
|
934
|
+
fill: "transparent",
|
|
935
|
+
transform: "translate(1 1)",
|
|
936
|
+
d: "M0 0h18v18H0z"
|
|
937
|
+
})
|
|
938
|
+
})
|
|
939
|
+
}) ]
|
|
940
|
+
})
|
|
941
|
+
} ], [ "ctrl key", {
|
|
942
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
943
|
+
children: [ jsxRuntime.jsx("path", {
|
|
944
|
+
d: "M 0 0 L 33 0 L 33 24 L 0 24 Z",
|
|
945
|
+
fill: "transparent"
|
|
946
|
+
}), jsxRuntime.jsxs("g", {
|
|
947
|
+
transform: "translate(3 2.998)",
|
|
948
|
+
children: [ jsxRuntime.jsx("path", {
|
|
949
|
+
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",
|
|
950
|
+
fill: strokeColor,
|
|
951
|
+
strokeWidth: "0.5",
|
|
952
|
+
stroke: strokeColor,
|
|
953
|
+
strokeMiterlimit: "10",
|
|
954
|
+
strokeDasharray: ""
|
|
955
|
+
}), jsxRuntime.jsx("path", {
|
|
956
|
+
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",
|
|
957
|
+
fill: strokeColor
|
|
958
|
+
}) ]
|
|
959
|
+
}) ]
|
|
960
|
+
})
|
|
961
|
+
} ], [ "g key", {
|
|
962
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
963
|
+
children: [ jsxRuntime.jsx("path", {
|
|
964
|
+
d: "M 0 0 L 24 0 L 24 24 L 0 24 Z",
|
|
965
|
+
fill: "transparent"
|
|
966
|
+
}), jsxRuntime.jsxs("g", {
|
|
967
|
+
transform: "translate(3 2.998)",
|
|
968
|
+
children: [ jsxRuntime.jsx("path", {
|
|
969
|
+
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",
|
|
970
|
+
fill: strokeColor
|
|
971
|
+
}), jsxRuntime.jsx("path", {
|
|
972
|
+
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",
|
|
973
|
+
fill: strokeColor
|
|
974
|
+
}) ]
|
|
975
|
+
}) ]
|
|
976
|
+
})
|
|
977
|
+
} ], [ "cmd key", {
|
|
978
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
979
|
+
children: [ jsxRuntime.jsx("path", {
|
|
980
|
+
d: "M 0 0 L 24 0 L 24 24 L 0 24 Z",
|
|
981
|
+
fill: "transparent"
|
|
982
|
+
}), jsxRuntime.jsxs("g", {
|
|
983
|
+
transform: "translate(3 2.998)",
|
|
984
|
+
children: [ jsxRuntime.jsx("path", {
|
|
985
|
+
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",
|
|
986
|
+
fill: strokeColor
|
|
987
|
+
}), jsxRuntime.jsx("path", {
|
|
988
|
+
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",
|
|
989
|
+
fill: strokeColor
|
|
990
|
+
}) ]
|
|
991
|
+
}) ]
|
|
992
|
+
})
|
|
993
|
+
} ], [ "person", {
|
|
994
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
995
|
+
fillRule: "evenodd",
|
|
996
|
+
clipRule: "evenodd",
|
|
997
|
+
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",
|
|
998
|
+
fill: strokeColor
|
|
999
|
+
})
|
|
1000
|
+
} ], [ "upload", {
|
|
1001
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs("g", {
|
|
1002
|
+
transform: "translate(1 0.94)",
|
|
1003
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1004
|
+
d: "M 0 0.06 L 18 0.06 L 18 18.06 L 0 18.06 Z",
|
|
1005
|
+
fill: "transparent"
|
|
1006
|
+
}), jsxRuntime.jsx("path", {
|
|
1007
|
+
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",
|
|
1008
|
+
fill: strokeColor
|
|
1009
|
+
}) ]
|
|
1010
|
+
})
|
|
1011
|
+
} ], [ "download", {
|
|
1012
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1013
|
+
fillRule: "evenodd",
|
|
1014
|
+
clipRule: "evenodd",
|
|
1015
|
+
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",
|
|
1016
|
+
fill: strokeColor
|
|
1017
|
+
})
|
|
1018
|
+
} ], [ "check circle", {
|
|
1019
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1020
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1021
|
+
d: "M 1 1 L 19 1 L 19 19 L 1 19 Z",
|
|
1022
|
+
fill: "transparent"
|
|
1023
|
+
}), jsxRuntime.jsx("path", {
|
|
1024
|
+
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",
|
|
1025
|
+
fill: strokeColor
|
|
1026
|
+
}), jsxRuntime.jsx("path", {
|
|
1027
|
+
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",
|
|
1028
|
+
fill: strokeColor
|
|
1029
|
+
}) ]
|
|
1030
|
+
})
|
|
1031
|
+
} ], [ "share", {
|
|
1032
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1033
|
+
d: "M11 7c-5.063 0-8 4.03-8 9 1.222-1.2 3-3 8-3v3l6-6-6-6v3Z",
|
|
1034
|
+
stroke: strokeColor,
|
|
1035
|
+
strokeWidth: stroke
|
|
1036
|
+
})
|
|
1037
|
+
} ], [ "g-p assist", {
|
|
1038
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1039
|
+
children: [ jsxRuntime.jsxs("g", {
|
|
1040
|
+
children: [ jsxRuntime.jsx("defs", {
|
|
1041
|
+
children: jsxRuntime.jsxs("linearGradient", {
|
|
1042
|
+
id: "iddX7xoI2TUg1057052775",
|
|
1043
|
+
x1: "0.49751243781094523",
|
|
1044
|
+
x2: "0.5024875621890548",
|
|
1045
|
+
y1: "0",
|
|
1046
|
+
y2: "1",
|
|
1047
|
+
children: [ jsxRuntime.jsx("stop", {
|
|
1048
|
+
offset: "0",
|
|
1049
|
+
stopColor: strokeColor,
|
|
1050
|
+
stopOpacity: "1"
|
|
1051
|
+
}), jsxRuntime.jsx("stop", {
|
|
1052
|
+
offset: "0.50",
|
|
1053
|
+
stopColor: strokeColor,
|
|
1054
|
+
stopOpacity: "1"
|
|
1055
|
+
}), jsxRuntime.jsx("stop", {
|
|
1056
|
+
offset: "1",
|
|
1057
|
+
stopColor: strokeColor,
|
|
1058
|
+
stopOpacity: "1"
|
|
1059
|
+
}) ]
|
|
1060
|
+
})
|
|
1061
|
+
}), jsxRuntime.jsx("path", {
|
|
1062
|
+
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",
|
|
1063
|
+
transform: "translate(1.4 1.4) rotate(90 9.6 9.6)",
|
|
1064
|
+
fill: "url(#iddX7xoI2TUg1057052775)"
|
|
1065
|
+
}) ]
|
|
1066
|
+
}), jsxRuntime.jsx("path", {
|
|
1067
|
+
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",
|
|
1068
|
+
fill: strokeColor
|
|
1069
|
+
}), jsxRuntime.jsx("path", {
|
|
1070
|
+
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",
|
|
1071
|
+
fill: strokeColor
|
|
1072
|
+
}) ]
|
|
1073
|
+
})
|
|
1074
|
+
} ], [ "search", {
|
|
1075
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1076
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1077
|
+
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",
|
|
1078
|
+
fill: strokeColor
|
|
1079
|
+
}), jsxRuntime.jsx("path", {
|
|
1080
|
+
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",
|
|
1081
|
+
fill: strokeColor
|
|
1082
|
+
}) ]
|
|
1083
|
+
})
|
|
1084
|
+
} ], [ "x", {
|
|
1085
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs("g", {
|
|
1086
|
+
transform: "translate(1 1)",
|
|
1087
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1088
|
+
d: "M 0 0 L 18 0 L 18 18 L 0 18 Z",
|
|
1089
|
+
fill: "transparent"
|
|
1090
|
+
}), jsxRuntime.jsx("path", {
|
|
1091
|
+
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",
|
|
1092
|
+
fill: strokeColor
|
|
1093
|
+
}) ]
|
|
1094
|
+
})
|
|
1095
|
+
} ], [ "plus", {
|
|
1096
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1097
|
+
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",
|
|
1098
|
+
fill: strokeColor
|
|
1099
|
+
})
|
|
1100
|
+
} ], [ "circle", {
|
|
1101
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1102
|
+
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",
|
|
1103
|
+
fill: strokeColor
|
|
1104
|
+
})
|
|
1105
|
+
} ], [ "circle fill", {
|
|
1106
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1107
|
+
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",
|
|
1108
|
+
fill: strokeColor
|
|
1109
|
+
})
|
|
1110
|
+
} ], [ "plus circle", {
|
|
1111
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1112
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1113
|
+
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",
|
|
1114
|
+
fill: strokeColor
|
|
1115
|
+
}), jsxRuntime.jsx("path", {
|
|
1116
|
+
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",
|
|
1117
|
+
fill: strokeColor
|
|
1118
|
+
}) ]
|
|
1119
|
+
})
|
|
1120
|
+
} ], [ "chevron down", {
|
|
1121
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1122
|
+
d: "m5 8 5 5 5-5",
|
|
1123
|
+
stroke: strokeColor,
|
|
1124
|
+
strokeWidth: stroke
|
|
1125
|
+
})
|
|
1126
|
+
} ], [ "chevron up", {
|
|
1127
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1128
|
+
d: "m15 12-5-5-5 5",
|
|
1129
|
+
stroke: strokeColor,
|
|
1130
|
+
strokeWidth: stroke
|
|
1131
|
+
})
|
|
1132
|
+
} ], [ "checked", {
|
|
1133
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1134
|
+
fillRule: "evenodd",
|
|
1135
|
+
clipRule: "evenodd",
|
|
1136
|
+
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",
|
|
1137
|
+
fill: strokeColor
|
|
1138
|
+
})
|
|
1139
|
+
} ], [ "unchecked", {
|
|
1140
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsx("rect", {
|
|
1141
|
+
x: "2.75",
|
|
1142
|
+
y: "2.75",
|
|
1143
|
+
width: "14.5",
|
|
1144
|
+
height: "14.5",
|
|
1145
|
+
rx: ".75",
|
|
1146
|
+
stroke: strokeColor,
|
|
1147
|
+
strokeWidth: stroke
|
|
1148
|
+
})
|
|
1149
|
+
} ], [ "partial", {
|
|
1150
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1151
|
+
children: [ jsxRuntime.jsx("rect", {
|
|
1152
|
+
x: "2",
|
|
1153
|
+
y: "2",
|
|
1154
|
+
width: "16",
|
|
1155
|
+
height: "16",
|
|
1156
|
+
rx: "1.5",
|
|
1157
|
+
fill: strokeColor
|
|
1158
|
+
}), jsxRuntime.jsx("path", {
|
|
1159
|
+
d: "M14 10H6",
|
|
1160
|
+
stroke: strokeColor,
|
|
1161
|
+
strokeWidth: stroke
|
|
1162
|
+
}) ]
|
|
1163
|
+
})
|
|
1164
|
+
} ], [ "search", {
|
|
1165
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1166
|
+
fillRule: "evenodd",
|
|
1167
|
+
clipRule: "evenodd",
|
|
1168
|
+
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",
|
|
1169
|
+
fill: strokeColor
|
|
1170
|
+
})
|
|
1171
|
+
} ], [ "filter", {
|
|
1172
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1173
|
+
fillRule: "evenodd",
|
|
1174
|
+
clipRule: "evenodd",
|
|
1175
|
+
d: "M2 4.25h16v1.5H2v-1.5Zm3 5h10v1.5H5v-1.5Zm7 5H8v1.5h4v-1.5Z",
|
|
1176
|
+
fill: strokeColor
|
|
1177
|
+
})
|
|
1178
|
+
} ], [ "more", {
|
|
1179
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1180
|
+
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",
|
|
1181
|
+
fill: strokeColor
|
|
1182
|
+
})
|
|
1183
|
+
} ], [ "people", {
|
|
1184
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1185
|
+
children: [ jsxRuntime.jsxs("g", {
|
|
1186
|
+
clipPath: "url(#a)",
|
|
1187
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1188
|
+
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",
|
|
1189
|
+
fill: strokeColor
|
|
1190
|
+
}), jsxRuntime.jsx("path", {
|
|
1191
|
+
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",
|
|
1192
|
+
fill: strokeColor
|
|
1193
|
+
}), jsxRuntime.jsx("circle", {
|
|
1194
|
+
cx: "6",
|
|
1195
|
+
cy: "4",
|
|
1196
|
+
r: "2",
|
|
1197
|
+
stroke: strokeColor,
|
|
1198
|
+
strokeWidth: stroke
|
|
1199
|
+
}), jsxRuntime.jsx("circle", {
|
|
1200
|
+
cx: "14",
|
|
1201
|
+
cy: "6",
|
|
1202
|
+
r: "2",
|
|
1203
|
+
stroke: strokeColor,
|
|
1204
|
+
strokeWidth: stroke
|
|
1205
|
+
}) ]
|
|
1206
|
+
}), jsxRuntime.jsx("defs", {
|
|
1207
|
+
children: jsxRuntime.jsx("clipPath", {
|
|
1208
|
+
id: "a",
|
|
1209
|
+
children: jsxRuntime.jsx("path", {
|
|
1210
|
+
fill: "#fff",
|
|
1211
|
+
transform: "translate(1 1)",
|
|
1212
|
+
d: "M0 0h18v18H0z"
|
|
1213
|
+
})
|
|
1214
|
+
})
|
|
1215
|
+
}) ]
|
|
1216
|
+
})
|
|
1217
|
+
} ], [ "wallet", {
|
|
1218
|
+
line: ({stroke: stroke, strokeColor: strokeColor, coverUp: coverUp}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1219
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1220
|
+
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",
|
|
1221
|
+
fill: strokeColor
|
|
1222
|
+
}), jsxRuntime.jsx("path", {
|
|
1223
|
+
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",
|
|
1224
|
+
fill: "transparent",
|
|
1225
|
+
strokeWidth: stroke,
|
|
1226
|
+
stroke: strokeColor,
|
|
1227
|
+
strokeMiterlimit: "10",
|
|
1228
|
+
strokeDasharray: ""
|
|
1229
|
+
}), jsxRuntime.jsx("path", {
|
|
1230
|
+
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",
|
|
1231
|
+
fill: coverUp,
|
|
1232
|
+
strokeWidth: stroke,
|
|
1233
|
+
stroke: strokeColor,
|
|
1234
|
+
strokeMiterlimit: "10",
|
|
1235
|
+
strokeDasharray: ""
|
|
1236
|
+
}) ]
|
|
1237
|
+
})
|
|
1238
|
+
} ], [ "invoice", {
|
|
1239
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1240
|
+
fillRule: "evenodd",
|
|
1241
|
+
clipRule: "evenodd",
|
|
1242
|
+
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",
|
|
1243
|
+
fill: strokeColor
|
|
1244
|
+
})
|
|
1245
|
+
} ], [ "payment", {
|
|
1246
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1247
|
+
fillRule: "evenodd",
|
|
1248
|
+
clipRule: "evenodd",
|
|
1249
|
+
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",
|
|
1250
|
+
fill: strokeColor
|
|
1251
|
+
})
|
|
1252
|
+
} ], [ "heart", {
|
|
1253
|
+
line: ({stroke: stroke, strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1254
|
+
children: [ jsxRuntime.jsxs("g", {
|
|
1255
|
+
clipPath: "url(#a)",
|
|
1256
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1257
|
+
d: "M11 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z",
|
|
1258
|
+
fill: strokeColor
|
|
1259
|
+
}), jsxRuntime.jsx("path", {
|
|
1260
|
+
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",
|
|
1261
|
+
stroke: strokeColor,
|
|
1262
|
+
strokeWidth: stroke
|
|
1263
|
+
}) ]
|
|
1264
|
+
}), jsxRuntime.jsx("defs", {
|
|
1265
|
+
children: jsxRuntime.jsx("clipPath", {
|
|
1266
|
+
id: "a",
|
|
1267
|
+
children: jsxRuntime.jsx("path", {
|
|
1268
|
+
fill: "transparent",
|
|
1269
|
+
transform: "translate(1 1)",
|
|
1270
|
+
d: "M0 0h18v18H0z"
|
|
1271
|
+
})
|
|
1272
|
+
})
|
|
1273
|
+
}) ]
|
|
1274
|
+
})
|
|
1275
|
+
} ], [ "clock", {
|
|
1276
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1277
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1278
|
+
d: "M 1 1 L 19 1 L 19 19 L 1 19 Z",
|
|
1279
|
+
fill: "transparent"
|
|
1280
|
+
}), jsxRuntime.jsx("path", {
|
|
1281
|
+
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",
|
|
1282
|
+
fill: strokeColor
|
|
1283
|
+
}), jsxRuntime.jsx("path", {
|
|
1284
|
+
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",
|
|
1285
|
+
fill: strokeColor
|
|
1286
|
+
}) ]
|
|
1287
|
+
})
|
|
1288
|
+
} ], [ "book", {
|
|
1289
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1290
|
+
fillRule: "evenodd",
|
|
1291
|
+
clipRule: "evenodd",
|
|
1292
|
+
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",
|
|
1293
|
+
fill: strokeColor
|
|
1294
|
+
})
|
|
1295
|
+
} ], [ "sparkle", {
|
|
1296
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1297
|
+
fillRule: "evenodd",
|
|
1298
|
+
clipRule: "evenodd",
|
|
1299
|
+
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",
|
|
1300
|
+
fill: strokeColor
|
|
1301
|
+
})
|
|
1302
|
+
} ], [ "inbox", {
|
|
1303
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsx("path", {
|
|
1304
|
+
fillRule: "evenodd",
|
|
1305
|
+
clipRule: "evenodd",
|
|
1306
|
+
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",
|
|
1307
|
+
fill: strokeColor
|
|
1308
|
+
})
|
|
1309
|
+
} ], [ "home", {
|
|
1310
|
+
line: ({strokeColor: strokeColor}) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1311
|
+
children: [ jsxRuntime.jsx("path", {
|
|
1312
|
+
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",
|
|
1313
|
+
fill: strokeColor
|
|
1314
|
+
}), jsxRuntime.jsx("path", {
|
|
1315
|
+
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",
|
|
1316
|
+
fill: strokeColor
|
|
1317
|
+
}) ]
|
|
1318
|
+
})
|
|
1319
|
+
} ] ]), Icon = React.memo(props => {
|
|
1320
|
+
var _a;
|
|
1321
|
+
const theme = hooks_useTheme.useTheme(), {name: name = "home", size: size = 20, stroke: stroke = 1.5, strokeColor: strokeColor = theme.current.colors["core-icon-primary"], fillColor: fillColor = "transparent", coverUp: coverUp = theme.current.colors["core-surface-primary"], toggle: toggle = !1, pointer: pointer = !1, disabled: disabled = !1, onClick: onClick = () => null} = props, svgAttributes = tslib_es6.__rest(props, [ "name", "size", "stroke", "strokeColor", "fillColor", "coverUp", "toggle", "pointer", "disabled", "onClick" ]), {id: svgId, className: className, style: style} = svgAttributes, rest = tslib_es6.__rest(svgAttributes, [ "id", "className", "style" ]), cursor = React.useMemo(() => disabled ? "default" : pointer ? "pointer" : "inherit", [ disabled, pointer ]), iconStyle = React.useMemo(() => ({
|
|
1322
|
+
cursor: cursor,
|
|
1323
|
+
userSelect: "none",
|
|
1324
|
+
WebkitUserSelect: "none",
|
|
1325
|
+
WebkitTapHighlightColor: "transparent",
|
|
1326
|
+
outline: "none",
|
|
1327
|
+
border: 0
|
|
1328
|
+
}), [ cursor ]), variantKey = toggle ? "lineOn" : "line", iconVariant = STATIC_ICON_REGISTRY.get(name), shape = null !== (_a = null == iconVariant ? void 0 : iconVariant[variantKey]) && void 0 !== _a ? _a : null == iconVariant ? void 0 : iconVariant.line;
|
|
1329
|
+
return shape ? jsxRuntime.jsxs("svg", Object.assign({
|
|
1330
|
+
id: svgId,
|
|
1331
|
+
className: className,
|
|
1332
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1333
|
+
width: size,
|
|
1334
|
+
height: size,
|
|
1335
|
+
viewBox: "0 0 20 20",
|
|
1336
|
+
style: Object.assign(Object.assign({}, null != style ? style : {}), iconStyle),
|
|
1337
|
+
onClick: e => onClick(e),
|
|
1338
|
+
fill: fillColor,
|
|
1339
|
+
role: "img",
|
|
1340
|
+
"aria-label": `${name} icon`,
|
|
1341
|
+
tabIndex: pointer && !disabled ? 0 : -1,
|
|
1342
|
+
onKeyDown: e => utils.accessibleKeyDown(e, () => onClick),
|
|
1343
|
+
opacity: disabled ? .5 : 1
|
|
1344
|
+
}, rest, {
|
|
1345
|
+
children: [ jsxRuntime.jsx("title", {}), shape({
|
|
1346
|
+
stroke: stroke,
|
|
1347
|
+
strokeColor: strokeColor,
|
|
1348
|
+
fillColor: fillColor,
|
|
1349
|
+
coverUp: coverUp
|
|
1350
|
+
}) ]
|
|
1351
|
+
})) : null;
|
|
1352
|
+
});
|
|
1353
|
+
|
|
1354
|
+
var IconNames;
|
|
1355
|
+
|
|
1356
|
+
Icon.displayName = "Icon", exports.IconNames = void 0, (IconNames = exports.IconNames || (exports.IconNames = {})).home = "home",
|
|
1357
|
+
IconNames.inbox = "inbox", IconNames.sparkle = "sparkle", IconNames.people = "people",
|
|
1358
|
+
IconNames.wallet = "wallet", IconNames.invoice = "invoice", IconNames.payment = "payment",
|
|
1359
|
+
IconNames.heart = "heart", IconNames.clock = "clock", IconNames.book = "book", IconNames.search = "search",
|
|
1360
|
+
IconNames.filter = "filter", IconNames.more = "more", IconNames.unchecked = "unchecked",
|
|
1361
|
+
IconNames.checked = "checked", IconNames.partial = "partial", IconNames.chevronDown = "chevron down",
|
|
1362
|
+
IconNames.chevronUp = "chevron up", IconNames.plus = "plus", IconNames.plusCircle = "plus circle",
|
|
1363
|
+
IconNames.x = "x", IconNames.gpAssist = "g-p assist", IconNames.upload = "upload",
|
|
1364
|
+
IconNames.download = "download", IconNames.share = "share", IconNames.checkCircle = "check circle",
|
|
1365
|
+
IconNames.circle = "circle", IconNames.circleFill = "circle fill", IconNames.person = "person",
|
|
1366
|
+
IconNames.ctrlKey = "ctrl key", IconNames.commandKey = "cmd key", IconNames.gKey = "g key",
|
|
1367
|
+
IconNames.attach = "attach", IconNames.menu = "menu", IconNames.help = "help", IconNames.blank = "blank",
|
|
1368
|
+
IconNames.check = "check", IconNames.message = "message", IconNames.info = "info",
|
|
1369
|
+
IconNames.alert = "alert", IconNames.notification = "notification", IconNames.arrowUp = "arrow up",
|
|
1370
|
+
IconNames.arrowLeft = "arrow left", IconNames.arrowRight = "arrow right", IconNames.navigate = "navigate",
|
|
1371
|
+
IconNames.document = "document", IconNames.refresh = "refresh", IconNames.recentChats = "recent chats",
|
|
1372
|
+
IconNames.trashBin = "trash bin", IconNames.dollar = "dollar", IconNames.apple = "apple",
|
|
1373
|
+
IconNames.view = "view", IconNames.openCircle = "open circle", IconNames.expanded = "expanded",
|
|
1374
|
+
IconNames.concise = "concise", IconNames.moderate = "moderate", IconNames.mail = "mail",
|
|
1375
|
+
IconNames.textDocument = "text document", IconNames.complianceCheck = "compliance check",
|
|
1376
|
+
IconNames.edit = "edit", IconNames.characterBeam = "character beam", IconNames.undo = "undo",
|
|
1377
|
+
IconNames.chat = "chat", IconNames.exclamation = "exclamation", IconNames.chart = "chart",
|
|
1378
|
+
IconNames.lightBulb = "light bulb", IconNames.settings = "settings", IconNames.documentEditor = "document editor",
|
|
1379
|
+
IconNames.chartArrow = "chart arrow", IconNames.focus = "focus", IconNames.briefcase = "briefcase",
|
|
1380
|
+
IconNames.globeLocation = "globe location", IconNames.barChart = "bar chart", IconNames.fontSmaller = "font smaller",
|
|
1381
|
+
IconNames.fontLarger = "font larger", IconNames.copy = "copy", IconNames.stop = "stop",
|
|
1382
|
+
IconNames.like = "like", IconNames.unlike = "unlike", IconNames.bold = "bold", IconNames.italic = "italic",
|
|
1383
|
+
IconNames.underline = "underline", IconNames.strike = "strike", IconNames.bulletList = "bullet list",
|
|
1384
|
+
IconNames.numberedList = "numbered list", IconNames.sink = "sink", IconNames.lift = "lift",
|
|
1385
|
+
IconNames.code = "code", IconNames.taskList = "task list", IconNames.highlight = "highlight",
|
|
1386
|
+
exports.Icon = Icon;
|