@digigov/react-icons 2.0.0-f2d82d25 → 2.0.0-f4bd66e1
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/AccessibilityIcon/config.d.ts +1 -1
- package/AccessibilityIcon/config.js +18 -0
- package/AccessibilityIcon/index.d.ts +1 -1
- package/AccessibilityIcon/index.js +8 -9
- package/ArrowIcon/config.js +20 -0
- package/ArrowIcon/index.d.ts +1 -1
- package/ArrowIcon/index.js +8 -9
- package/BurgerIcon/config.d.ts +2 -2
- package/BurgerIcon/config.js +29 -0
- package/BurgerIcon/index.d.ts +1 -1
- package/BurgerIcon/index.js +8 -9
- package/CancelIcon/config.d.ts +1 -1
- package/CancelIcon/config.js +11 -0
- package/CancelIcon/index.d.ts +1 -1
- package/CancelIcon/index.js +8 -9
- package/CaretIcon/config.js +20 -0
- package/CaretIcon/index.d.ts +1 -1
- package/CaretIcon/index.js +8 -9
- package/ChatIcon/config.js +14 -0
- package/ChatIcon/index.d.ts +1 -1
- package/ChatIcon/index.js +8 -9
- package/CheckIcon/config.d.ts +1 -1
- package/CheckIcon/config.js +11 -0
- package/CheckIcon/index.d.ts +1 -1
- package/CheckIcon/index.js +8 -9
- package/ChevronIcon/config.js +20 -0
- package/ChevronIcon/index.d.ts +1 -1
- package/ChevronIcon/index.js +8 -9
- package/CloseIcon/config.d.ts +1 -1
- package/CloseIcon/config.js +11 -0
- package/CloseIcon/index.d.ts +1 -1
- package/CloseIcon/index.js +8 -9
- package/DownloadIcon/config.d.ts +1 -1
- package/DownloadIcon/config.js +19 -0
- package/DownloadIcon/index.d.ts +1 -1
- package/DownloadIcon/index.js +8 -9
- package/ExclamationIcon/config.d.ts +1 -1
- package/ExclamationIcon/config.js +16 -0
- package/ExclamationIcon/index.d.ts +1 -1
- package/ExclamationIcon/index.js +8 -9
- package/GlobeIcon/config.d.ts +1 -1
- package/GlobeIcon/config.js +11 -0
- package/GlobeIcon/index.d.ts +1 -1
- package/GlobeIcon/index.js +8 -9
- package/Icon/index.d.ts +3 -3
- package/Icon/index.js +23 -31
- package/IconBase/index.d.ts +95 -0
- package/IconBase/index.js +52 -0
- package/LockIcon/config.d.ts +1 -1
- package/LockIcon/config.js +11 -0
- package/LockIcon/index.d.ts +1 -1
- package/LockIcon/index.js +8 -9
- package/LoginIcon/config.d.ts +1 -1
- package/LoginIcon/config.js +14 -0
- package/LoginIcon/index.d.ts +1 -1
- package/LoginIcon/index.js +8 -9
- package/MinusIcon/config.d.ts +1 -1
- package/MinusIcon/config.js +14 -0
- package/MinusIcon/index.d.ts +1 -1
- package/MinusIcon/index.js +8 -9
- package/MoreVertIcon/config.d.ts +1 -1
- package/MoreVertIcon/config.js +23 -0
- package/MoreVertIcon/index.d.ts +1 -1
- package/MoreVertIcon/index.js +8 -9
- package/PdfFileIcon/config.d.ts +1 -1
- package/PdfFileIcon/config.js +24 -0
- package/PdfFileIcon/index.d.ts +1 -1
- package/PdfFileIcon/index.js +8 -9
- package/PlusIcon/config.d.ts +1 -1
- package/PlusIcon/config.js +11 -0
- package/PlusIcon/index.d.ts +1 -1
- package/PlusIcon/index.js +8 -9
- package/PrintIcon/config.d.ts +1 -1
- package/PrintIcon/config.js +17 -0
- package/PrintIcon/index.d.ts +1 -1
- package/PrintIcon/index.js +8 -9
- package/ReplyIcon/config.d.ts +1 -1
- package/ReplyIcon/config.js +11 -0
- package/ReplyIcon/index.d.ts +1 -1
- package/ReplyIcon/index.js +8 -9
- package/RestoreIcon/config.d.ts +1 -1
- package/RestoreIcon/config.js +19 -0
- package/RestoreIcon/index.d.ts +1 -1
- package/RestoreIcon/index.js +8 -9
- package/SearchIcon/config.d.ts +1 -1
- package/SearchIcon/config.js +11 -0
- package/SearchIcon/index.d.ts +1 -1
- package/SearchIcon/index.js +8 -9
- package/SvgIcon/index.d.ts +37 -0
- package/SvgIcon/index.js +20 -0
- package/UncheckIcon/config.d.ts +1 -1
- package/UncheckIcon/config.js +11 -0
- package/UncheckIcon/index.d.ts +1 -1
- package/UncheckIcon/index.js +8 -9
- package/icons.d.ts +46 -46
- package/icons.js +23 -0
- package/index.d.ts +23 -23
- package/index.js +24 -24
- package/lazy.d.ts +29 -0
- package/lazy.js +82 -0
- package/package.json +8 -12
- package/registry.d.ts +28 -3
- package/registry.js +114 -0
- package/src/AccessibilityIcon/__snapshots__/index.test.tsx.snap +281 -364
- package/src/AccessibilityIcon/config.tsx +6 -4
- package/src/AccessibilityIcon/index.test.tsx +19 -11
- package/src/ArrowIcon/__snapshots__/index.test.tsx.snap +65 -132
- package/src/ArrowIcon/config.tsx +17 -4
- package/src/ArrowIcon/index.test.tsx +5 -5
- package/src/BurgerIcon/__snapshots__/index.test.tsx.snap +220 -293
- package/src/BurgerIcon/config.tsx +24 -7
- package/src/BurgerIcon/index.test.tsx +14 -10
- package/src/CancelIcon/__snapshots__/index.test.tsx.snap +116 -237
- package/src/CancelIcon/config.tsx +6 -2
- package/src/CancelIcon/index.test.tsx +13 -9
- package/src/CaretIcon/__snapshots__/index.test.tsx.snap +65 -132
- package/src/CaretIcon/config.tsx +5 -4
- package/src/CaretIcon/index.test.tsx +5 -5
- package/src/ChatIcon/__snapshots__/index.test.tsx.snap +132 -271
- package/src/ChatIcon/config.tsx +6 -2
- package/src/ChatIcon/index.test.tsx +14 -10
- package/src/CheckIcon/__snapshots__/index.test.tsx.snap +133 -271
- package/src/CheckIcon/config.tsx +6 -2
- package/src/CheckIcon/index.test.tsx +14 -10
- package/src/ChevronIcon/__snapshots__/index.test.tsx.snap +65 -132
- package/src/ChevronIcon/config.tsx +17 -4
- package/src/ChevronIcon/index.test.tsx +9 -5
- package/src/CloseIcon/__snapshots__/index.test.tsx.snap +17 -30
- package/src/CloseIcon/config.tsx +6 -2
- package/src/CloseIcon/index.test.tsx +2 -2
- package/src/DownloadIcon/__snapshots__/index.test.tsx.snap +200 -286
- package/src/DownloadIcon/config.tsx +9 -5
- package/src/DownloadIcon/index.test.tsx +15 -9
- package/src/ExclamationIcon/__snapshots__/index.test.tsx.snap +164 -271
- package/src/ExclamationIcon/config.tsx +7 -3
- package/src/ExclamationIcon/index.test.tsx +17 -9
- package/src/GlobeIcon/__snapshots__/index.test.tsx.snap +67 -135
- package/src/GlobeIcon/config.tsx +6 -13
- package/src/GlobeIcon/index.test.tsx +9 -7
- package/src/Icon/__snapshots__/index.test.tsx.snap +157 -262
- package/src/Icon/index.test.tsx +13 -11
- package/src/Icon/index.tsx +2 -2
- package/src/IconBase/index.tsx +258 -0
- package/src/LockIcon/__snapshots__/index.test.tsx.snap +116 -237
- package/src/LockIcon/config.tsx +6 -2
- package/src/LockIcon/index.test.tsx +13 -9
- package/src/LoginIcon/__snapshots__/index.test.tsx.snap +151 -258
- package/src/LoginIcon/config.tsx +10 -3
- package/src/LoginIcon/index.test.tsx +13 -9
- package/src/MinusIcon/__snapshots__/index.test.tsx.snap +137 -258
- package/src/MinusIcon/config.tsx +4 -3
- package/src/MinusIcon/index.test.tsx +13 -9
- package/src/MoreVertIcon/__snapshots__/index.test.tsx.snap +289 -408
- package/src/MoreVertIcon/config.tsx +5 -4
- package/src/MoreVertIcon/index.test.tsx +18 -10
- package/src/PdfFileIcon/__snapshots__/index.test.tsx.snap +277 -314
- package/src/PdfFileIcon/config.tsx +19 -9
- package/src/PdfFileIcon/index.test.tsx +13 -9
- package/src/PlusIcon/__snapshots__/index.test.tsx.snap +116 -237
- package/src/PlusIcon/config.tsx +6 -2
- package/src/PlusIcon/index.test.tsx +13 -9
- package/src/PrintIcon/__snapshots__/index.test.tsx.snap +171 -278
- package/src/PrintIcon/config.tsx +7 -3
- package/src/PrintIcon/index.test.tsx +13 -9
- package/src/ReplyIcon/__snapshots__/index.test.tsx.snap +116 -237
- package/src/ReplyIcon/config.tsx +6 -2
- package/src/ReplyIcon/index.test.tsx +13 -9
- package/src/RestoreIcon/__snapshots__/index.test.tsx.snap +200 -293
- package/src/RestoreIcon/config.tsx +8 -4
- package/src/RestoreIcon/index.test.tsx +13 -9
- package/src/SearchIcon/__snapshots__/index.test.tsx.snap +17 -30
- package/src/SearchIcon/config.tsx +6 -2
- package/src/SearchIcon/index.test.tsx +2 -2
- package/src/SvgIcon/__snapshots__/index.test.tsx.snap +271 -0
- package/src/SvgIcon/index.test.tsx +96 -0
- package/src/SvgIcon/index.tsx +72 -0
- package/src/UncheckIcon/__snapshots__/index.test.tsx.snap +148 -303
- package/src/UncheckIcon/config.tsx +6 -2
- package/src/UncheckIcon/index.test.tsx +15 -11
- package/src/icons.ts +11 -12
- package/src/lazy.ts +29 -0
- package/src/registry.ts +123 -0
- package/AccessibilityIcon/__snapshots__/index.test.tsx.snap +0 -408
- package/AccessibilityIcon/config/index.js +0 -15
- package/AccessibilityIcon/config/package.json +0 -6
- package/AccessibilityIcon/index.test/index.js +0 -57
- package/AccessibilityIcon/index.test/package.json +0 -6
- package/AccessibilityIcon/index.test.d.ts +0 -1
- package/AccessibilityIcon/package.json +0 -6
- package/ArrowIcon/__snapshots__/index.test.tsx.snap +0 -148
- package/ArrowIcon/config/index.js +0 -22
- package/ArrowIcon/config/package.json +0 -6
- package/ArrowIcon/index.test/index.js +0 -25
- package/ArrowIcon/index.test/package.json +0 -6
- package/ArrowIcon/index.test.d.ts +0 -1
- package/ArrowIcon/package.json +0 -6
- package/BurgerIcon/__snapshots__/index.test.tsx.snap +0 -320
- package/BurgerIcon/config/index.js +0 -28
- package/BurgerIcon/config/package.json +0 -6
- package/BurgerIcon/index.test/index.js +0 -38
- package/BurgerIcon/index.test/package.json +0 -6
- package/BurgerIcon/index.test.d.ts +0 -1
- package/BurgerIcon/package.json +0 -6
- package/CancelIcon/__snapshots__/index.test.tsx.snap +0 -262
- package/CancelIcon/config/index.js +0 -9
- package/CancelIcon/config/package.json +0 -6
- package/CancelIcon/index.test/index.js +0 -45
- package/CancelIcon/index.test/package.json +0 -6
- package/CancelIcon/index.test.d.ts +0 -1
- package/CancelIcon/package.json +0 -6
- package/CaretIcon/__snapshots__/index.test.tsx.snap +0 -148
- package/CaretIcon/config/index.js +0 -22
- package/CaretIcon/config/package.json +0 -6
- package/CaretIcon/index.test/index.js +0 -25
- package/CaretIcon/index.test/package.json +0 -6
- package/CaretIcon/index.test.d.ts +0 -1
- package/CaretIcon/package.json +0 -6
- package/ChatIcon/__snapshots__/index.test.tsx.snap +0 -300
- package/ChatIcon/config/index.js +0 -17
- package/ChatIcon/config/package.json +0 -6
- package/ChatIcon/index.test/index.js +0 -51
- package/ChatIcon/index.test/package.json +0 -6
- package/ChatIcon/index.test.d.ts +0 -1
- package/ChatIcon/package.json +0 -6
- package/CheckIcon/__snapshots__/index.test.tsx.snap +0 -299
- package/CheckIcon/config/index.js +0 -9
- package/CheckIcon/config/package.json +0 -6
- package/CheckIcon/index.test/index.js +0 -51
- package/CheckIcon/index.test/package.json +0 -6
- package/CheckIcon/index.test.d.ts +0 -1
- package/CheckIcon/package.json +0 -6
- package/ChevronIcon/__snapshots__/index.test.tsx.snap +0 -148
- package/ChevronIcon/config/index.js +0 -22
- package/ChevronIcon/config/package.json +0 -6
- package/ChevronIcon/index.test/index.js +0 -25
- package/ChevronIcon/index.test/package.json +0 -6
- package/ChevronIcon/index.test.d.ts +0 -1
- package/ChevronIcon/package.json +0 -6
- package/CloseIcon/__snapshots__/index.test.tsx.snap +0 -34
- package/CloseIcon/config/index.js +0 -9
- package/CloseIcon/config/package.json +0 -6
- package/CloseIcon/index.test/index.js +0 -7
- package/CloseIcon/index.test/package.json +0 -6
- package/CloseIcon/index.test.d.ts +0 -1
- package/CloseIcon/package.json +0 -6
- package/DownloadIcon/__snapshots__/index.test.tsx.snap +0 -318
- package/DownloadIcon/config/index.js +0 -14
- package/DownloadIcon/config/package.json +0 -6
- package/DownloadIcon/index.test/index.js +0 -45
- package/DownloadIcon/index.test/package.json +0 -6
- package/DownloadIcon/index.test.d.ts +0 -1
- package/DownloadIcon/package.json +0 -6
- package/ExclamationIcon/__snapshots__/index.test.tsx.snap +0 -297
- package/ExclamationIcon/config/index.js +0 -14
- package/ExclamationIcon/config/package.json +0 -6
- package/ExclamationIcon/index.test/index.js +0 -45
- package/ExclamationIcon/index.test/package.json +0 -6
- package/ExclamationIcon/index.test.d.ts +0 -1
- package/ExclamationIcon/package.json +0 -6
- package/GlobeIcon/__snapshots__/index.test.tsx.snap +0 -149
- package/GlobeIcon/config/index.js +0 -9
- package/GlobeIcon/config/package.json +0 -6
- package/GlobeIcon/index.test/index.js +0 -25
- package/GlobeIcon/index.test/package.json +0 -6
- package/GlobeIcon/index.test.d.ts +0 -1
- package/GlobeIcon/package.json +0 -6
- package/Icon/__snapshots__/index.test.tsx.snap +0 -343
- package/Icon/index.test/index.js +0 -62
- package/Icon/index.test/package.json +0 -6
- package/Icon/index.test.d.ts +0 -1
- package/Icon/package.json +0 -6
- package/LockIcon/__snapshots__/index.test.tsx.snap +0 -262
- package/LockIcon/config/index.js +0 -9
- package/LockIcon/config/package.json +0 -6
- package/LockIcon/index.test/index.js +0 -45
- package/LockIcon/index.test/package.json +0 -6
- package/LockIcon/index.test.d.ts +0 -1
- package/LockIcon/package.json +0 -6
- package/LoginIcon/__snapshots__/index.test.tsx.snap +0 -283
- package/LoginIcon/config/index.js +0 -12
- package/LoginIcon/config/package.json +0 -6
- package/LoginIcon/index.test/index.js +0 -45
- package/LoginIcon/index.test/package.json +0 -6
- package/LoginIcon/index.test.d.ts +0 -1
- package/LoginIcon/package.json +0 -6
- package/MinusIcon/__snapshots__/index.test.tsx.snap +0 -283
- package/MinusIcon/config/index.js +0 -12
- package/MinusIcon/config/package.json +0 -6
- package/MinusIcon/index.test/index.js +0 -45
- package/MinusIcon/index.test/package.json +0 -6
- package/MinusIcon/index.test.d.ts +0 -1
- package/MinusIcon/package.json +0 -6
- package/MoreVertIcon/__snapshots__/index.test.tsx.snap +0 -444
- package/MoreVertIcon/config/index.js +0 -21
- package/MoreVertIcon/config/package.json +0 -6
- package/MoreVertIcon/index.test/index.js +0 -57
- package/MoreVertIcon/index.test/package.json +0 -6
- package/MoreVertIcon/index.test.d.ts +0 -1
- package/MoreVertIcon/package.json +0 -6
- package/PdfFileIcon/__snapshots__/index.test.tsx.snap +0 -353
- package/PdfFileIcon/config/index.js +0 -15
- package/PdfFileIcon/config/package.json +0 -6
- package/PdfFileIcon/index.test/index.js +0 -45
- package/PdfFileIcon/index.test/package.json +0 -6
- package/PdfFileIcon/index.test.d.ts +0 -1
- package/PdfFileIcon/package.json +0 -6
- package/PlusIcon/__snapshots__/index.test.tsx.snap +0 -262
- package/PlusIcon/config/index.js +0 -9
- package/PlusIcon/config/package.json +0 -6
- package/PlusIcon/index.test/index.js +0 -45
- package/PlusIcon/index.test/package.json +0 -6
- package/PlusIcon/index.test.d.ts +0 -1
- package/PlusIcon/package.json +0 -6
- package/PrintIcon/__snapshots__/index.test.tsx.snap +0 -304
- package/PrintIcon/config/index.js +0 -15
- package/PrintIcon/config/package.json +0 -6
- package/PrintIcon/index.test/index.js +0 -45
- package/PrintIcon/index.test/package.json +0 -6
- package/PrintIcon/index.test.d.ts +0 -1
- package/PrintIcon/package.json +0 -6
- package/ReplyIcon/__snapshots__/index.test.tsx.snap +0 -262
- package/ReplyIcon/config/index.js +0 -9
- package/ReplyIcon/config/package.json +0 -6
- package/ReplyIcon/index.test/index.js +0 -45
- package/ReplyIcon/index.test/package.json +0 -6
- package/ReplyIcon/index.test.d.ts +0 -1
- package/ReplyIcon/package.json +0 -6
- package/RestoreIcon/__snapshots__/index.test.tsx.snap +0 -318
- package/RestoreIcon/config/index.js +0 -17
- package/RestoreIcon/config/package.json +0 -6
- package/RestoreIcon/index.test/index.js +0 -45
- package/RestoreIcon/index.test/package.json +0 -6
- package/RestoreIcon/index.test.d.ts +0 -1
- package/RestoreIcon/package.json +0 -6
- package/SearchIcon/__snapshots__/index.test.tsx.snap +0 -34
- package/SearchIcon/config/index.js +0 -9
- package/SearchIcon/config/package.json +0 -6
- package/SearchIcon/index.test/index.js +0 -7
- package/SearchIcon/index.test/package.json +0 -6
- package/SearchIcon/index.test.d.ts +0 -1
- package/SearchIcon/package.json +0 -6
- package/UncheckIcon/__snapshots__/index.test.tsx.snap +0 -336
- package/UncheckIcon/config/index.js +0 -9
- package/UncheckIcon/config/package.json +0 -6
- package/UncheckIcon/index.test/index.js +0 -57
- package/UncheckIcon/index.test/package.json +0 -6
- package/UncheckIcon/index.test.d.ts +0 -1
- package/UncheckIcon/package.json +0 -6
- package/cjs/AccessibilityIcon/__snapshots__/index.test.tsx.snap +0 -408
- package/cjs/AccessibilityIcon/config/index.js +0 -23
- package/cjs/AccessibilityIcon/index.js +0 -16
- package/cjs/AccessibilityIcon/index.test/index.js +0 -60
- package/cjs/ArrowIcon/__snapshots__/index.test.tsx.snap +0 -148
- package/cjs/ArrowIcon/config/index.js +0 -29
- package/cjs/ArrowIcon/index.js +0 -16
- package/cjs/ArrowIcon/index.test/index.js +0 -28
- package/cjs/BurgerIcon/__snapshots__/index.test.tsx.snap +0 -320
- package/cjs/BurgerIcon/config/index.js +0 -35
- package/cjs/BurgerIcon/index.js +0 -16
- package/cjs/BurgerIcon/index.test/index.js +0 -41
- package/cjs/CancelIcon/__snapshots__/index.test.tsx.snap +0 -262
- package/cjs/CancelIcon/config/index.js +0 -17
- package/cjs/CancelIcon/index.js +0 -16
- package/cjs/CancelIcon/index.test/index.js +0 -48
- package/cjs/CaretIcon/__snapshots__/index.test.tsx.snap +0 -148
- package/cjs/CaretIcon/config/index.js +0 -29
- package/cjs/CaretIcon/index.js +0 -16
- package/cjs/CaretIcon/index.test/index.js +0 -28
- package/cjs/ChatIcon/__snapshots__/index.test.tsx.snap +0 -300
- package/cjs/ChatIcon/config/index.js +0 -24
- package/cjs/ChatIcon/index.js +0 -16
- package/cjs/ChatIcon/index.test/index.js +0 -54
- package/cjs/CheckIcon/__snapshots__/index.test.tsx.snap +0 -299
- package/cjs/CheckIcon/config/index.js +0 -17
- package/cjs/CheckIcon/index.js +0 -16
- package/cjs/CheckIcon/index.test/index.js +0 -54
- package/cjs/ChevronIcon/__snapshots__/index.test.tsx.snap +0 -148
- package/cjs/ChevronIcon/config/index.js +0 -29
- package/cjs/ChevronIcon/index.js +0 -16
- package/cjs/ChevronIcon/index.test/index.js +0 -28
- package/cjs/CloseIcon/__snapshots__/index.test.tsx.snap +0 -34
- package/cjs/CloseIcon/config/index.js +0 -17
- package/cjs/CloseIcon/index.js +0 -16
- package/cjs/CloseIcon/index.test/index.js +0 -10
- package/cjs/DownloadIcon/__snapshots__/index.test.tsx.snap +0 -318
- package/cjs/DownloadIcon/config/index.js +0 -22
- package/cjs/DownloadIcon/index.js +0 -16
- package/cjs/DownloadIcon/index.test/index.js +0 -48
- package/cjs/ExclamationIcon/__snapshots__/index.test.tsx.snap +0 -297
- package/cjs/ExclamationIcon/config/index.js +0 -22
- package/cjs/ExclamationIcon/index.js +0 -16
- package/cjs/ExclamationIcon/index.test/index.js +0 -48
- package/cjs/GlobeIcon/__snapshots__/index.test.tsx.snap +0 -149
- package/cjs/GlobeIcon/config/index.js +0 -17
- package/cjs/GlobeIcon/index.js +0 -16
- package/cjs/GlobeIcon/index.test/index.js +0 -28
- package/cjs/Icon/__snapshots__/index.test.tsx.snap +0 -343
- package/cjs/Icon/index.js +0 -42
- package/cjs/Icon/index.test/index.js +0 -65
- package/cjs/LockIcon/__snapshots__/index.test.tsx.snap +0 -262
- package/cjs/LockIcon/config/index.js +0 -17
- package/cjs/LockIcon/index.js +0 -16
- package/cjs/LockIcon/index.test/index.js +0 -48
- package/cjs/LoginIcon/__snapshots__/index.test.tsx.snap +0 -283
- package/cjs/LoginIcon/config/index.js +0 -20
- package/cjs/LoginIcon/index.js +0 -16
- package/cjs/LoginIcon/index.test/index.js +0 -48
- package/cjs/MinusIcon/__snapshots__/index.test.tsx.snap +0 -283
- package/cjs/MinusIcon/config/index.js +0 -20
- package/cjs/MinusIcon/index.js +0 -16
- package/cjs/MinusIcon/index.test/index.js +0 -48
- package/cjs/MoreVertIcon/__snapshots__/index.test.tsx.snap +0 -444
- package/cjs/MoreVertIcon/config/index.js +0 -29
- package/cjs/MoreVertIcon/index.js +0 -16
- package/cjs/MoreVertIcon/index.test/index.js +0 -60
- package/cjs/PdfFileIcon/__snapshots__/index.test.tsx.snap +0 -353
- package/cjs/PdfFileIcon/config/index.js +0 -23
- package/cjs/PdfFileIcon/index.js +0 -16
- package/cjs/PdfFileIcon/index.test/index.js +0 -48
- package/cjs/PlusIcon/__snapshots__/index.test.tsx.snap +0 -262
- package/cjs/PlusIcon/config/index.js +0 -17
- package/cjs/PlusIcon/index.js +0 -16
- package/cjs/PlusIcon/index.test/index.js +0 -48
- package/cjs/PrintIcon/__snapshots__/index.test.tsx.snap +0 -304
- package/cjs/PrintIcon/config/index.js +0 -23
- package/cjs/PrintIcon/index.js +0 -16
- package/cjs/PrintIcon/index.test/index.js +0 -48
- package/cjs/ReplyIcon/__snapshots__/index.test.tsx.snap +0 -262
- package/cjs/ReplyIcon/config/index.js +0 -17
- package/cjs/ReplyIcon/index.js +0 -16
- package/cjs/ReplyIcon/index.test/index.js +0 -48
- package/cjs/RestoreIcon/__snapshots__/index.test.tsx.snap +0 -318
- package/cjs/RestoreIcon/config/index.js +0 -25
- package/cjs/RestoreIcon/index.js +0 -16
- package/cjs/RestoreIcon/index.test/index.js +0 -48
- package/cjs/SearchIcon/__snapshots__/index.test.tsx.snap +0 -34
- package/cjs/SearchIcon/config/index.js +0 -17
- package/cjs/SearchIcon/index.js +0 -16
- package/cjs/SearchIcon/index.test/index.js +0 -10
- package/cjs/UncheckIcon/__snapshots__/index.test.tsx.snap +0 -336
- package/cjs/UncheckIcon/config/index.js +0 -17
- package/cjs/UncheckIcon/index.js +0 -16
- package/cjs/UncheckIcon/index.test/index.js +0 -60
- package/cjs/icons/index.js +0 -258
- package/cjs/index.js +0 -258
- package/cjs/registry/index.js +0 -77
- package/icons/index.js +0 -24
- package/icons/package.json +0 -6
- package/registry/index.js +0 -68
- package/registry/package.json +0 -6
- package/src/registry.js +0 -75
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface AccessibilityType {
|
|
3
3
|
}
|
|
4
|
-
export declare function accessibility(): React.ReactElement
|
|
4
|
+
export declare function accessibility(): React.ReactElement<any>;
|
|
5
5
|
export declare namespace accessibility {
|
|
6
6
|
var props: any[];
|
|
7
7
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
function accessibility() {
|
|
4
|
+
return /*#__PURE__*/ react.createElement(react.Fragment, null, /*#__PURE__*/ react.createElement(IconBase, {
|
|
5
|
+
as: "title"
|
|
6
|
+
}, "Μενού Προσβασιμότητας"), /*#__PURE__*/ react.createElement(IconBase, {
|
|
7
|
+
as: "circle",
|
|
8
|
+
cx: "12",
|
|
9
|
+
cy: "3",
|
|
10
|
+
r: "3"
|
|
11
|
+
}), /*#__PURE__*/ react.createElement(IconBase, {
|
|
12
|
+
as: "path",
|
|
13
|
+
d: "M19.76,6.13c-4.94,2.01-10.57,2.01-15.51,0c-0.71-0.3-1.55-0.04-1.98,0.66c-1.41,2.6,3.27,3.76,4.94,4.37 c0.4,0.11,0.81,0.2,1.22,0.28c0.56,0.11,0.92,0.67,0.79,1.25c-0.79,3.66-1.96,9.1-1.96,9.1c-0.46,2.27,2.72,3.15,3.39,0.92L12,17.93 l1.36,4.78c0.67,2.22,3.85,1.36,3.39-0.92c0,0-1.16-5.4-1.95-9.06c-0.12-0.57,0.22-1.16,0.77-1.27c2.01-0.41,3.94-1.17,5.68-2.31 C22.89,8.04,21.58,5.38,19.76,6.13z"
|
|
14
|
+
}));
|
|
15
|
+
}
|
|
16
|
+
accessibility.props = [];
|
|
17
|
+
const config = accessibility;
|
|
18
|
+
export { accessibility, config as default };
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default AccessibilityIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const AccessibilityIcon_AccessibilityIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "accessibility"
|
|
6
|
+
});
|
|
7
|
+
const AccessibilityIcon = AccessibilityIcon_AccessibilityIcon;
|
|
8
|
+
export { AccessibilityIcon_AccessibilityIcon as AccessibilityIcon, AccessibilityIcon as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
const arrow = ({ direction = 'up' })=>/*#__PURE__*/ react.createElement(react.Fragment, null, 'left' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
4
|
+
as: "polygon",
|
|
5
|
+
points: "14.4 19.7 8.48 13.7 21.93 13.7 22 10.37 8.48 10.32 14.4 4.4 12 2 2 12 12 22 14.4 19.7"
|
|
6
|
+
}), 'right' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
7
|
+
as: "polygon",
|
|
8
|
+
points: "9.6 4.3 15.52 10.3 2.07 10.3 2 13.63 15.52 13.68 9.6 19.6 12 22 22 12 12 2 9.6 4.3"
|
|
9
|
+
}), 'up' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
10
|
+
as: "polygon",
|
|
11
|
+
points: "22 12 12 2 2 12 4.3 14.4 10.3 8.48 10.3 21.93 13.63 22 13.68 8.48 19.6 14.4 22 12"
|
|
12
|
+
}), 'down' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
13
|
+
as: "polygon",
|
|
14
|
+
points: "19.7 9.6 13.7 15.52 13.7 2.07 10.37 2 10.32 15.52 4.4 9.6 2 12 12 22 22 12 19.7 9.6"
|
|
15
|
+
}));
|
|
16
|
+
arrow.props = [
|
|
17
|
+
'direction'
|
|
18
|
+
];
|
|
19
|
+
const config = arrow;
|
|
20
|
+
export { arrow, config as default };
|
package/ArrowIcon/index.d.ts
CHANGED
package/ArrowIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default ArrowIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const ArrowIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "arrow"
|
|
6
|
+
});
|
|
7
|
+
const src_ArrowIcon = ArrowIcon;
|
|
8
|
+
export { ArrowIcon, src_ArrowIcon as default };
|
package/BurgerIcon/config.d.ts
CHANGED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import clsx from "clsx";
|
|
3
|
+
import IconBase from "../IconBase/index.js";
|
|
4
|
+
const burger = ({ active = false })=>/*#__PURE__*/ react.createElement(IconBase, {
|
|
5
|
+
as: "g",
|
|
6
|
+
className: clsx({
|
|
7
|
+
["ds-svg-icon--burger--active"]: active
|
|
8
|
+
})
|
|
9
|
+
}, /*#__PURE__*/ react.createElement(IconBase, {
|
|
10
|
+
as: "rect",
|
|
11
|
+
id: "ds-svg-icon--burger__line-1",
|
|
12
|
+
width: "20",
|
|
13
|
+
height: "3.3"
|
|
14
|
+
}), /*#__PURE__*/ react.createElement(IconBase, {
|
|
15
|
+
as: "rect",
|
|
16
|
+
id: "ds-svg-icon--burger__line-2",
|
|
17
|
+
width: "20",
|
|
18
|
+
height: "3.3"
|
|
19
|
+
}), /*#__PURE__*/ react.createElement(IconBase, {
|
|
20
|
+
as: "rect",
|
|
21
|
+
id: "ds-svg-icon--burger__line-3",
|
|
22
|
+
width: "20",
|
|
23
|
+
height: "3.3"
|
|
24
|
+
}));
|
|
25
|
+
burger.props = [
|
|
26
|
+
'active'
|
|
27
|
+
];
|
|
28
|
+
const config = burger;
|
|
29
|
+
export { burger, config as default };
|
package/BurgerIcon/index.d.ts
CHANGED
package/BurgerIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default BurgerIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const BurgerIcon_BurgerIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "burger"
|
|
6
|
+
});
|
|
7
|
+
const BurgerIcon = BurgerIcon_BurgerIcon;
|
|
8
|
+
export { BurgerIcon_BurgerIcon as BurgerIcon, BurgerIcon as default };
|
package/CancelIcon/config.d.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
function cancel() {
|
|
4
|
+
return /*#__PURE__*/ react.createElement(react.Fragment, null, /*#__PURE__*/ react.createElement(IconBase, {
|
|
5
|
+
as: "path",
|
|
6
|
+
d: "M12,2C6.477,2,2,6.477,2,12s4.477,10,10,10,10-4.477,10-10S17.523,2,12,2ZM17.419,15.581l-1.838,1.838-3.581-3.581-3.581,3.581-1.838-1.838,3.581-3.581-3.581-3.581,1.838-1.839,3.581,3.581,3.581-3.581,1.838,1.839-3.581,3.581,3.581,3.581Z"
|
|
7
|
+
}));
|
|
8
|
+
}
|
|
9
|
+
cancel.props = [];
|
|
10
|
+
const config = cancel;
|
|
11
|
+
export { cancel, config as default };
|
package/CancelIcon/index.d.ts
CHANGED
package/CancelIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default CancelIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const CancelIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "cancel"
|
|
6
|
+
});
|
|
7
|
+
const src_CancelIcon = CancelIcon;
|
|
8
|
+
export { CancelIcon, src_CancelIcon as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
const caret = ({ direction = 'left' })=>/*#__PURE__*/ react.createElement(react.Fragment, null, 'left' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
4
|
+
as: "path",
|
|
5
|
+
d: "M18,22V2L6,12L18,22z"
|
|
6
|
+
}), 'right' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
7
|
+
as: "path",
|
|
8
|
+
d: "M6,2v20l12-10L6,2z"
|
|
9
|
+
}), 'up' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
10
|
+
as: "path",
|
|
11
|
+
d: "M2,18h20L12,6L2,18z"
|
|
12
|
+
}), 'down' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
13
|
+
as: "path",
|
|
14
|
+
d: "M22,6H2l10,12L22,6z"
|
|
15
|
+
}));
|
|
16
|
+
caret.props = [
|
|
17
|
+
'direction'
|
|
18
|
+
];
|
|
19
|
+
const config = caret;
|
|
20
|
+
export { caret, config as default };
|
package/CaretIcon/index.d.ts
CHANGED
package/CaretIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default CaretIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const CaretIcon_CaretIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "caret"
|
|
6
|
+
});
|
|
7
|
+
const CaretIcon = CaretIcon_CaretIcon;
|
|
8
|
+
export { CaretIcon_CaretIcon as CaretIcon, CaretIcon as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
const chat = ({ dots = false })=>/*#__PURE__*/ react.createElement(react.Fragment, null, dots ? /*#__PURE__*/ react.createElement(IconBase, {
|
|
4
|
+
as: "path",
|
|
5
|
+
d: "M2,3.5v13h4.35l2.5,3,2.5-3h10.65V3.5H2ZM7.65,11.3c-.718,0-1.3-.582-1.3-1.3s.582-1.3,1.3-1.3,1.3.582,1.3,1.3-.582,1.3-1.3,1.3ZM12,11.3c-.718,0-1.3-.582-1.3-1.3s.582-1.3,1.3-1.3,1.3.582,1.3,1.3-.582,1.3-1.3,1.3ZM16.35,11.3c-.718,0-1.3-.582-1.3-1.3s.582-1.3,1.3-1.3,1.3.582,1.3,1.3-.582,1.3-1.3,1.3Z"
|
|
6
|
+
}) : /*#__PURE__*/ react.createElement(IconBase, {
|
|
7
|
+
as: "path",
|
|
8
|
+
d: "M2,3.5v13h4.35l2.5,3,2.5-3h10.65V3.5H2Z"
|
|
9
|
+
}));
|
|
10
|
+
chat.props = [
|
|
11
|
+
'dots'
|
|
12
|
+
];
|
|
13
|
+
const config = chat;
|
|
14
|
+
export { chat, config as default };
|
package/ChatIcon/index.d.ts
CHANGED
package/ChatIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default ChatIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const ChatIcon_ChatIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "chat"
|
|
6
|
+
});
|
|
7
|
+
const ChatIcon = ChatIcon_ChatIcon;
|
|
8
|
+
export { ChatIcon_ChatIcon as ChatIcon, ChatIcon as default };
|
package/CheckIcon/config.d.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
function check() {
|
|
4
|
+
return /*#__PURE__*/ react.createElement(react.Fragment, null, /*#__PURE__*/ react.createElement(IconBase, {
|
|
5
|
+
as: "polygon",
|
|
6
|
+
points: "9.49 14.94 4.16 9.67 1.84 12.01 9.5 19.6 22.16 7.05 19.84 4.7 9.5 14.94"
|
|
7
|
+
}));
|
|
8
|
+
}
|
|
9
|
+
check.props = [];
|
|
10
|
+
const config = check;
|
|
11
|
+
export { check, config as default };
|
package/CheckIcon/index.d.ts
CHANGED
package/CheckIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default CheckIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const CheckIcon_CheckIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "check"
|
|
6
|
+
});
|
|
7
|
+
const CheckIcon = CheckIcon_CheckIcon;
|
|
8
|
+
export { CheckIcon_CheckIcon as CheckIcon, CheckIcon as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
const chevron = ({ direction = 'right' })=>/*#__PURE__*/ react.createElement(react.Fragment, null, 'left' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
4
|
+
as: "path",
|
|
5
|
+
d: "M14.8,22l2.4-2.3L9.6,12l7.6-7.6L14.8,2l-10,10L14.8,22z"
|
|
6
|
+
}), 'right' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
7
|
+
as: "path",
|
|
8
|
+
d: "M8.5,2L6.1,4.3l7.6,7.7l-7.6,7.6L8.5,22l10-10L8.5,2z"
|
|
9
|
+
}), 'up' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
10
|
+
as: "path",
|
|
11
|
+
d: "M2,15.8l2.3,2.4l7.7-7.6l7.6,7.6l2.4-2.4l-10-10L2,15.8z"
|
|
12
|
+
}), 'down' === direction && /*#__PURE__*/ react.createElement(IconBase, {
|
|
13
|
+
as: "path",
|
|
14
|
+
d: "M22,8.2l-2.3-2.4L12,13.4L4.4,5.8L2,8.2l10,10L22,8.2z"
|
|
15
|
+
}));
|
|
16
|
+
chevron.props = [
|
|
17
|
+
'direction'
|
|
18
|
+
];
|
|
19
|
+
const config = chevron;
|
|
20
|
+
export { chevron, config as default };
|
package/ChevronIcon/index.d.ts
CHANGED
package/ChevronIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default ChevronIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const ChevronIcon_ChevronIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "chevron"
|
|
6
|
+
});
|
|
7
|
+
const ChevronIcon = ChevronIcon_ChevronIcon;
|
|
8
|
+
export { ChevronIcon_ChevronIcon as ChevronIcon, ChevronIcon as default };
|
package/CloseIcon/config.d.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
function config_close() {
|
|
4
|
+
return /*#__PURE__*/ react.createElement(react.Fragment, null, /*#__PURE__*/ react.createElement(IconBase, {
|
|
5
|
+
as: "polygon",
|
|
6
|
+
points: "14.4,11.8 22,4.2 19.7,1.8 12,9.4 4.4,1.8 2,4.2 9.7,11.9 2.1,19.5 4.4,21.9 12.1,14.3 19.7,21.9 22.1,19.5 "
|
|
7
|
+
}));
|
|
8
|
+
}
|
|
9
|
+
config_close.props = [];
|
|
10
|
+
const config = config_close;
|
|
11
|
+
export { config_close as close, config as default };
|
package/CloseIcon/index.d.ts
CHANGED
package/CloseIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default CloseIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const CloseIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "close"
|
|
6
|
+
});
|
|
7
|
+
const src_CloseIcon = CloseIcon;
|
|
8
|
+
export { CloseIcon, src_CloseIcon as default };
|
package/DownloadIcon/config.d.ts
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
function download() {
|
|
4
|
+
return /*#__PURE__*/ react.createElement(IconBase, {
|
|
5
|
+
as: "g"
|
|
6
|
+
}, /*#__PURE__*/ react.createElement(IconBase, {
|
|
7
|
+
as: "polygon",
|
|
8
|
+
points: "12 18 20 10 15.3 10 15.3 2 8.7 2 8.7 10 4 10 12 18"
|
|
9
|
+
}), /*#__PURE__*/ react.createElement(IconBase, {
|
|
10
|
+
as: "rect",
|
|
11
|
+
x: "6",
|
|
12
|
+
y: "18.699",
|
|
13
|
+
width: "12",
|
|
14
|
+
height: "3.301"
|
|
15
|
+
}));
|
|
16
|
+
}
|
|
17
|
+
download.props = [];
|
|
18
|
+
const config = download;
|
|
19
|
+
export { config as default, download };
|
package/DownloadIcon/index.d.ts
CHANGED
package/DownloadIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default DownloadIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const DownloadIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "download"
|
|
6
|
+
});
|
|
7
|
+
const src_DownloadIcon = DownloadIcon;
|
|
8
|
+
export { DownloadIcon, src_DownloadIcon as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
function exclamation() {
|
|
4
|
+
return /*#__PURE__*/ react.createElement(react.Fragment, null, /*#__PURE__*/ react.createElement(IconBase, {
|
|
5
|
+
as: "path",
|
|
6
|
+
d: "M13.716,16.486h-3.446l-.488-14.486h4.422l-.488,14.486Z"
|
|
7
|
+
}), /*#__PURE__*/ react.createElement(IconBase, {
|
|
8
|
+
as: "circle",
|
|
9
|
+
cx: "11.993",
|
|
10
|
+
cy: "19.9",
|
|
11
|
+
r: "2.1"
|
|
12
|
+
}));
|
|
13
|
+
}
|
|
14
|
+
exclamation.props = [];
|
|
15
|
+
const config = exclamation;
|
|
16
|
+
export { config as default, exclamation };
|
package/ExclamationIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default ExclamationIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const ExclamationIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "exclamation"
|
|
6
|
+
});
|
|
7
|
+
const src_ExclamationIcon = ExclamationIcon;
|
|
8
|
+
export { ExclamationIcon, src_ExclamationIcon as default };
|
package/GlobeIcon/config.d.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import IconBase from "../IconBase/index.js";
|
|
3
|
+
function globe() {
|
|
4
|
+
return /*#__PURE__*/ react.createElement(react.Fragment, null, /*#__PURE__*/ react.createElement(IconBase, {
|
|
5
|
+
as: "path",
|
|
6
|
+
d: "M12,1C5.925,1,1,5.925,1,12s4.925,11,11,11,11-4.925,11-11S18.075,1,12,1ZM19.203,7.7h-2.6c-.236-1.22-.572-2.32-.98-3.267,1.49.716,2.735,1.857,3.58,3.267ZM20.4,12c0,.582-.06,1.151-.173,1.7h-3.292c.039-.556.066-1.12.066-1.7s-.026-1.145-.066-1.7h3.292c.113.549.173,1.118.173,1.7ZM12,20.378c-.484-.265-1.393-1.667-1.943-4.078h3.885c-.55,2.411-1.459,3.814-1.943,4.078ZM9.667,13.7c-.042-.537-.068-1.103-.068-1.7s.025-1.163.068-1.7h4.665c.042.537.068,1.103.068,1.7s-.025,1.163-.068,1.7h-4.665ZM3.6,12c0-.582.06-1.151.173-1.7h3.292c-.039.556-.066,1.12-.066,1.7s.026,1.145.066,1.7h-3.292c-.113-.549-.173-1.118-.173-1.7ZM12,3.622c.484.265,1.393,1.667,1.943,4.079h-3.885c.55-2.411,1.459-3.814,1.943-4.079ZM8.377,4.433c-.409.947-.745,2.047-.98,3.267h-2.6c.845-1.411,2.09-2.551,3.58-3.267ZM4.797,16.3h2.6c.236,1.22.572,2.32.98,3.267-1.49-.716-2.735-1.857-3.58-3.267ZM15.623,19.567c.409-.947.745-2.047.98-3.267h2.6c-.845,1.411-2.09,2.551-3.58,3.267Z"
|
|
7
|
+
}));
|
|
8
|
+
}
|
|
9
|
+
globe.props = [];
|
|
10
|
+
const config = globe;
|
|
11
|
+
export { config as default, globe };
|
package/GlobeIcon/index.d.ts
CHANGED
package/GlobeIcon/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export default GlobeIcon;
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Icon from "../Icon/index.js";
|
|
3
|
+
const GlobeIcon = (props)=>/*#__PURE__*/ react.createElement(Icon, {
|
|
4
|
+
...props,
|
|
5
|
+
icon: "globe"
|
|
6
|
+
});
|
|
7
|
+
const src_GlobeIcon = GlobeIcon;
|
|
8
|
+
export { GlobeIcon, src_GlobeIcon as default };
|