@redsift/design-system-legacy 8.0.0 → 8.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/dist/package.json +65 -0
  2. package/package.json +2 -3
  3. package/rollup.config.js +70 -0
  4. package/src/components/Alert/Alert.jsx +94 -0
  5. package/src/components/Alert/index.ts +1 -0
  6. package/src/components/Alert/readme.md +114 -0
  7. package/src/components/Button/Button.jsx +161 -0
  8. package/src/components/Button/index.ts +1 -0
  9. package/src/components/Button/readme.md +173 -0
  10. package/src/components/Card/Card.jsx +34 -0
  11. package/src/components/Card/index.ts +1 -0
  12. package/src/components/Card/readme.md +54 -0
  13. package/src/components/CardHeader/CardHeader.jsx +40 -0
  14. package/src/components/CardHeader/index.ts +1 -0
  15. package/src/components/Checkbox/Checkbox.jsx +123 -0
  16. package/src/components/Checkbox/index.ts +1 -0
  17. package/src/components/Checkbox/readme.md +54 -0
  18. package/src/components/CheckboxTree/CheckboxTree.jsx +167 -0
  19. package/src/components/CheckboxTree/CheckboxTree.styles.ts +49 -0
  20. package/src/components/CheckboxTree/index.ts +1 -0
  21. package/src/components/CheckboxTree/readme.md +60 -0
  22. package/src/components/IconContainer/IconContainer.jsx +51 -0
  23. package/src/components/IconContainer/index.ts +1 -0
  24. package/src/components/Input/Input.jsx +27 -0
  25. package/src/components/Input/OutlineInput/OutlineInput.jsx +188 -0
  26. package/src/components/Input/RegularInput/RegularInput.jsx +55 -0
  27. package/src/components/Input/RegularInput/RegularInput.styles.ts +98 -0
  28. package/src/components/Input/index.ts +1 -0
  29. package/src/components/Input/readme.md +82 -0
  30. package/src/components/Pagination/Pagination.jsx +111 -0
  31. package/src/components/Pagination/index.ts +1 -0
  32. package/src/components/Pagination/readme.md +34 -0
  33. package/src/components/Radio/Radio.jsx +121 -0
  34. package/src/components/Radio/index.ts +1 -0
  35. package/src/components/Radio/readme.md +90 -0
  36. package/src/components/Select/Select.jsx +360 -0
  37. package/src/components/Select/SelectComponents.jsx +342 -0
  38. package/src/components/Select/index.ts +1 -0
  39. package/src/components/Select/readme.md +2507 -0
  40. package/src/components/Switch/Switch.jsx +130 -0
  41. package/src/components/Switch/index.ts +1 -0
  42. package/src/components/Switch/readme.md +55 -0
  43. package/src/components/Table/ExportCSVButton.jsx +34 -0
  44. package/src/components/Table/Table.jsx +872 -0
  45. package/src/components/Table/TableComponents.jsx +239 -0
  46. package/src/components/Table/TableFilters.jsx +23 -0
  47. package/src/components/Table/TableStyles.jsx +514 -0
  48. package/src/components/Table/index.ts +1 -0
  49. package/src/components/Table/readme.md +2190 -0
  50. package/src/components/Tabs/Tabs.jsx +116 -0
  51. package/src/components/Tabs/TabsComponents.jsx +124 -0
  52. package/src/components/Tabs/index.ts +1 -0
  53. package/src/components/Tabs/readme.md +171 -0
  54. package/src/components/Typography/Typography.jsx +77 -0
  55. package/src/components/Typography/index.ts +1 -0
  56. package/src/components/Typography/readme.md +88 -0
  57. package/src/components/icons/ActionsIcon.jsx +24 -0
  58. package/src/components/icons/AddIcon.jsx +8 -0
  59. package/src/components/icons/Arrow.jsx +39 -0
  60. package/src/components/icons/ArrowDown.jsx +8 -0
  61. package/src/components/icons/ArrowIcon.jsx +25 -0
  62. package/src/components/icons/ArrowUp.jsx +8 -0
  63. package/src/components/icons/BarchartHorizontal.jsx +18 -0
  64. package/src/components/icons/BellIcon.jsx +19 -0
  65. package/src/components/icons/BimiSetupIcon.jsx +25 -0
  66. package/src/components/icons/Chevron.jsx +42 -0
  67. package/src/components/icons/ChevronLeft.jsx +8 -0
  68. package/src/components/icons/ChevronRight.jsx +8 -0
  69. package/src/components/icons/ClearIcon.jsx +8 -0
  70. package/src/components/icons/Cloud.jsx +34 -0
  71. package/src/components/icons/Cross.jsx +25 -0
  72. package/src/components/icons/DeleteIcon.jsx +19 -0
  73. package/src/components/icons/DynamicDmarcIcon.jsx +43 -0
  74. package/src/components/icons/EditOutline.jsx +8 -0
  75. package/src/components/icons/Email.jsx +68 -0
  76. package/src/components/icons/EmailSourcesIcon.jsx +36 -0
  77. package/src/components/icons/ExpandLayoutIcon.jsx +38 -0
  78. package/src/components/icons/ExportIcon.jsx +7 -0
  79. package/src/components/icons/Eye.jsx +28 -0
  80. package/src/components/icons/Facebook.jsx +31 -0
  81. package/src/components/icons/FilterList.jsx +8 -0
  82. package/src/components/icons/FindOutHowIcon.jsx +49 -0
  83. package/src/components/icons/FlatArrow.jsx +33 -0
  84. package/src/components/icons/ForwardArrowIcon.jsx +54 -0
  85. package/src/components/icons/Github.jsx +41 -0
  86. package/src/components/icons/Globe.jsx +29 -0
  87. package/src/components/icons/Hand.jsx +21 -0
  88. package/src/components/icons/InfinityLoop.jsx +22 -0
  89. package/src/components/icons/InfinityLoopBreak.jsx +35 -0
  90. package/src/components/icons/IngrainIcon.jsx +33 -0
  91. package/src/components/icons/LanguageIcon.jsx +44 -0
  92. package/src/components/icons/Linkedin.jsx +37 -0
  93. package/src/components/icons/LocationPin.jsx +34 -0
  94. package/src/components/icons/MicrosoftShield.jsx +44 -0
  95. package/src/components/icons/News.jsx +65 -0
  96. package/src/components/icons/Nodes.jsx +17 -0
  97. package/src/components/icons/OnDmarcIcon.jsx +29 -0
  98. package/src/components/icons/OnDmarcLogo.jsx +74 -0
  99. package/src/components/icons/OnDomainIcon.jsx +27 -0
  100. package/src/components/icons/OnInboxIcon.jsx +42 -0
  101. package/src/components/icons/OnInboxLogo.jsx +97 -0
  102. package/src/components/icons/OnInboxManagerIcon.jsx +46 -0
  103. package/src/components/icons/OpenInNewTabIcon.jsx +28 -0
  104. package/src/components/icons/Padlock.jsx +37 -0
  105. package/src/components/icons/PlusIcon.jsx +16 -0
  106. package/src/components/icons/Question.jsx +19 -0
  107. package/src/components/icons/Recruiting.jsx +34 -0
  108. package/src/components/icons/ReportsIcon.jsx +25 -0
  109. package/src/components/icons/SearchIcon.jsx +7 -0
  110. package/src/components/icons/Shield.jsx +17 -0
  111. package/src/components/icons/ShieldPassIcon.jsx +23 -0
  112. package/src/components/icons/ShieldSolid.jsx +33 -0
  113. package/src/components/icons/ShieldWarningIcon.jsx +40 -0
  114. package/src/components/icons/ShieldWarningInvertedIcon.jsx +36 -0
  115. package/src/components/icons/Spinner.jsx +100 -0
  116. package/src/components/icons/Team.jsx +164 -0
  117. package/src/components/icons/ThreeDotsIcon.jsx +18 -0
  118. package/src/components/icons/Thumb.jsx +17 -0
  119. package/src/components/icons/Traffic.jsx +22 -0
  120. package/src/components/icons/Twitter.jsx +47 -0
  121. package/src/components/icons/Upload.jsx +12 -0
  122. package/src/components/icons/VerticalDots.jsx +28 -0
  123. package/src/components/icons/Warning.jsx +36 -0
  124. package/src/components/icons/WarningTriangle.jsx +44 -0
  125. package/src/components/icons/Youtube.jsx +28 -0
  126. package/src/components/icons/index.ts +69 -0
  127. package/src/hooks/useDebouncedValue.jsx +19 -0
  128. package/src/hooks/useFetch.jsx +26 -0
  129. package/src/hooks/useIsMobile.jsx +25 -0
  130. package/src/hooks/useOnClickOutside.jsx +14 -0
  131. package/src/hooks/useToggle.jsx +8 -0
  132. package/src/index.ts +23 -0
  133. package/tsconfig.json +3 -0
  134. /package/{CONTRIBUTING.md → dist/CONTRIBUTING.md} +0 -0
  135. /package/{index.js → dist/index.js} +0 -0
  136. /package/{index.js.map → dist/index.js.map} +0 -0
@@ -0,0 +1,164 @@
1
+ import React from 'react';
2
+
3
+ export const Team = ({ titleTag = "Team", width = 60, fill = "#02ac61" }) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ viewBox="0 0 84 57"
7
+ style={{
8
+ width
9
+ }}
10
+ >
11
+ {titleTag && <title>{titleTag}</title>}
12
+ <defs>
13
+ <polygon
14
+ id="path-1"
15
+ points="0.0117333333 0.437555556 21.3859556 0.437555556 21.3859556 21.8116963 0.0117333333 21.8116963"
16
+ />
17
+ <polygon
18
+ id="path-3"
19
+ points="0.000313967414 0.462482927 83.1929412 0.462482927 83.1929412 33.9997512 0.000313967414 33.9997512"
20
+ />
21
+ <polygon
22
+ id="path-5"
23
+ points="0.637921429 0.437555556 22.2948857 0.437555556 22.2948857 21.8116963 0.637921429 21.8116963"
24
+ />
25
+ </defs>
26
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
27
+ <path
28
+ d="M42.0554902,12.6229177 C38.0076237,12.6229177 34.7157595,15.9321847 34.7157595,19.9995807
29
+ C34.7157595,24.1365837 37.9391997,27.3762437 42.0554902,27.3762437 C46.0407738,27.3762437
30
+ 49.2842405,24.0669767 49.2842405,19.9995807 C49.2842405,16.000953 45.9740186,12.6229177
31
+ 42.0554902,12.6229177 M42.0554902,31 C35.9590745,31 31,26.0654519 31,19.9995807 C31,13.9345481
32
+ 35.9590745,9 42.0554902,9 C48.0901574,9 53,13.9345481 53,19.9995807 C53,26.0654519 48.0901574,
33
+ 31 42.0554902,31"
34
+ fill={fill}
35
+ />
36
+ <path
37
+ d="M41.5550562,11.7630484 C37.2672975,11.7630484 33.8587818,15.3000832 33.8587818,19.4995839
38
+ C33.8587818,23.8106052 37.2672975,27.2361194 41.5550562,27.2361194 C45.7335305,27.2361194
39
+ 49.1412182,23.8106052 49.1412182,19.4995839 C49.1412182,15.3000832 45.7335305,11.7630484
40
+ 41.5550562,11.7630484 M41.5550562,9 C47.2717918,9 52,13.7529426 52,19.4995839 C52,25.3577458
41
+ 47.2717918,30 41.5550562,30 C35.7273802,30 31,25.3577458 31,19.4995839 C31,13.7529426 35.7273802,
42
+ 9 41.5550562,9"
43
+ fill={fill}
44
+ />
45
+ <g transform="translate(54.000000, 0.000000)">
46
+ <mask id="mask-2" fill="white">
47
+ <use xlinkHref="#path-1"></use>
48
+ </mask>
49
+ <path
50
+ d="M10.6988444,3.95747407 C6.74617778,3.95747407 3.53091852,7.17273333 3.53091852,11.1245852
51
+ C3.53091852,15.1440667 6.67936296,18.2916963 10.6988444,18.2916963 C14.5904,18.2916963 17.7575852,
52
+ 15.076437 17.7575852,11.1245852 C17.7575852,7.23954815 14.5252148,3.95747407 10.6988444,3.95747407
53
+ M10.6988444,21.8116963 C4.7066963,21.8116963 0.0117333333,17.1175481 0.0117333333,11.1245852
54
+ C0.0117333333,5.23102963 4.8061037,0.437474074 10.6988444,0.437474074 C16.5915852,0.437474074
55
+ 21.3859556,5.23102963 21.3859556,11.1245852 C21.3859556,17.0173259 16.5915852,21.8116963 10.6988444,
56
+ 21.8116963"
57
+ fill={fill}
58
+ mask="url(#mask-2)"
59
+ />
60
+ </g>
61
+
62
+ <path
63
+ d="M65.5,2.76315789 C61.1888079,2.76315789 57.7623256,6.30033291 57.7623256,10.5 C57.7623256,
64
+ 14.8111921 61.1888079,18.2368421 65.5,18.2368421 C69.6996671,18.2368421 73.1261493,14.8111921
65
+ 73.1261493,10.5 C73.1261493,6.30033291 69.6996671,2.76315789 65.5,2.76315789 M65.5,0 C71.2468691,
66
+ 0 76,4.75229867 76,10.5 C76,16.3575618 71.2468691,21 65.5,21 C59.6416059,21 55,16.3575618 55,
67
+ 10.5 C55,4.75229867 59.6416059,0 65.5,0"
68
+ fill={fill}
69
+ />
70
+ <g transform="translate(0.000000, 23.000000)">
71
+ <mask id="mask-4" fill="white">
72
+ <use xlinkHref="#path-3"></use>
73
+ </mask>
74
+ <path
75
+ d="M18.0292,4.15521463 C10.1702588,4.15521463 4.22272941,9.93106829 3.56555294,18.2005317
76
+ C3.56637647,18.3298976 3.68331765,18.4957512 3.83237647,18.5455073 C8.49684706,20.3599463
77
+ 13.2675529,21.2762878 18.0292,21.2762878 C20.4273176,21.2762878 22.7299059,21.0756049
78
+ 25.0580235,20.6634585 C26.3517882,17.4110683 28.4139059,14.7458 31.1916706,12.7348244
79
+ C28.8816706,7.35536098 23.9841412,4.15521463 18.0292,4.15521463 M58.1375529,20.6634585
80
+ C60.4104941,21.0656537 62.8366118,21.2762878 65.1663765,21.2762878 C69.8720235,21.2762878
81
+ 74.6073176,20.3964341 79.2396706,18.6599463 C79.5880235,18.4824829 79.6275529,18.3730195
82
+ 79.6275529,18.167361 C78.9720235,9.93106829 73.0244941,4.15521463 65.1663765,4.15521463
83
+ C59.3012,4.15521463 54.2867294,7.4333122 52.0030824,12.7348244 C54.7808471,14.7458 56.8429647,
84
+ 17.4118976 58.1375529,20.6634585 M41.6521412,13.1859463 C33.6688471,13.1859463 27.8563765,
85
+ 18.8299463 27.1893176,27.2312634 L27.1852,27.2818488 L27.1687294,27.3291171 C27.1637882,
86
+ 27.3448732 27.1489647,27.3904829 27.1860235,27.4535073 C27.2189647,27.5074098 27.2766118,
87
+ 27.5530195 27.3457882,27.5754098 C32.0119059,29.3915073 36.8196706,30.3078488 41.6521412,
88
+ 30.3078488 C46.3561412,30.3078488 51.0914353,29.4279951 55.7262588,27.690678 C56.0746118,
89
+ 27.5132146 56.1149647,27.402922 56.1149647,27.1980927 C55.4594353,18.9609707 49.5110824,
90
+ 13.1859463 41.6521412,13.1859463 M41.6521412,33.9997512 C36.4861412,33.9997512 31.2484941,
91
+ 32.9905317 26.0841412,30.9994585 C24.4346118,30.360922 23.4060235,28.7338976 23.5237882,
92
+ 26.9501415 C23.6127294,26.1407756 23.7033176,25.3198 23.8523765,24.5004829 C22.1089647,
93
+ 24.7451171 20.2403765,24.8595561 18.0292,24.8595561 C12.7454353,24.8595561 7.54484706,
94
+ 23.8868244 2.57072941,21.9678976 C0.895670588,21.3675073 -0.112329412,19.7769707 0.0103764706,
95
+ 17.920239 C0.8092,7.80233659 8.38731765,0.462482927 18.0292,0.462482927 C25.3734353,0.462482927
96
+ 31.4321412,4.39487317 34.3186118,11.0049707 C36.5586118,10.0015561 39.0234353,9.49321463
97
+ 41.6521412,9.49321463 C44.2124941,9.49321463 46.6410824,10.0015561 48.8769647,11.0049707
98
+ C51.7626118,4.39487317 57.8213176,0.462482927 65.1663765,0.462482927 C74.8082588,0.462482927
99
+ 82.3855529,7.80233659 83.1843765,17.9144341 C83.3037882,19.7247268 82.2282588,21.3534098
100
+ 80.5062588,21.9712146 C75.6482588,23.8859951 70.4830824,24.8595561 65.1663765,24.8595561
101
+ C62.9552,24.8595561 61.0866118,24.7451171 59.3423765,24.5004829 C59.4914353,25.3189707
102
+ 59.5820235,26.1366293 59.6693176,26.9318976 C59.7944941,28.8168244 58.6572,30.5251171
103
+ 56.9681412,31.0110683 C51.9479059,32.9897024 46.7835529,33.9997512 41.6521412,33.9997512"
104
+ fill={fill}
105
+ mask="url(#mask-4)"
106
+ />
107
+ </g>
108
+
109
+ <path
110
+ d="M42.054617,34.9995436 C33.6710661,34.9995436 27.9011237,41.2218701 27.2477216,49.5551189
111
+ C27.1386846,49.8889509 27.3567586,50.2219461 27.6830497,50.3332235 C32.4732989,52.2224279
112
+ 37.2643679,53.1109731 42.054617,53.1109731 C46.736649,53.1109731 51.5268982,52.2224279
113
+ 56.2089302,50.4445008 C56.6442583,50.2219461 56.8623323,50.0002282 56.8623323,49.5551189
114
+ C56.2089302,41.2218701 50.3291309,34.9995436 42.054617,34.9995436 M32.1470077,35.110821
115
+ C29.9695472,29.6665991 25.0702611,25.8881903 18.5378796,25.8881903 C10.2633657,25.8881903
116
+ 4.38356643,32.1113534 3.73016431,40.4446022 C3.73016431,40.7775975 3.94823829,41.1114294
117
+ 4.27452944,41.2218701 C9.06559842,43.1110745 13.8558476,43.9996197 18.5378796,43.9996197
118
+ C21.0416312,43.9996197 23.4371657,43.7770651 25.8318804,43.3336291 C27.1386846,39.8890523
119
+ 29.3161451,37.110466 32.1470077,35.110821 M51.8531893,35.110821 C54.6840519,37.110466
120
+ 56.8623323,39.8890523 58.1674969,43.3336291 C60.5630313,43.7770651 63.0676028,43.9996197
121
+ 65.4631373,43.9996197 C70.1443495,43.9996197 74.9345986,43.1110745 79.6158108,41.3331474
122
+ C80.0519588,41.1114294 80.2692129,40.8888748 80.2692129,40.4446022 C79.6158108,32.1113534
123
+ 73.7376512,25.8881903 65.4631373,25.8881903 C59.038973,25.8881903 54.0306498,29.6665991
124
+ 51.8531893,35.110821 M18.5378796,23 C26.0499544,23 31.9289338,27.3331221 34.5417224,33.7771665
125
+ C36.8282199,32.6669033 39.3327914,32.1113534 42.054617,32.1113534 C44.6682255,32.1113534
126
+ 47.1711573,32.6669033 49.4576548,33.7771665 C52.0712633,27.3331221 57.9502427,23 65.4631373,
127
+ 23 C75.1526726,23 82.2294193,30.4447036 82.9918584,40.2220476 C83.1000755,41.8886973 82.1203823,
128
+ 43.3336291 80.5963239,43.8883424 C75.5880007,45.8888241 70.4706406,46.7773693 65.4631373,46.7773693
129
+ C63.284857,46.7773693 61.2164335,46.666092 59.1480099,46.3330967 C59.3652641,47.3329192 59.4743011,
130
+ 48.3335784 59.5833381,49.3334009 C59.6923751,51.0000507 58.711862,52.5554232 57.1886234,53.0005324
131
+ C52.1803003,54.9993408 47.0629402,56 42.054617,56 C36.9372569,56 31.8207166,54.9993408 26.7033565,
132
+ 53.0005324 C25.2875152,52.4449825 24.307822,51.0000507 24.416859,49.3334009 C24.525896,48.3335784
133
+ 24.6341131,47.3329192 24.8521871,46.3330967 C22.7837636,46.666092 20.7153401,46.7773693 18.5378796,
134
+ 46.7773693 C13.5295564,46.7773693 8.4121963,45.8888241 3.295656,43.8883424 C1.77077779,43.3336291
135
+ 0.900121513,41.8886973 1.0091585,40.2220476 C1.77077779,30.4447036 8.84752444,23 18.5378796,23"
136
+ fill={fill}
137
+ />
138
+ <g transform="translate(7.000000, 0.000000)">
139
+ <mask id="mask-6" fill="white">
140
+ <use xlinkHref="#path-5"></use>
141
+ </mask>
142
+ <path
143
+ d="M11.4117786,3.95747407 C7.55435,3.95747407 4.29492143,7.23954815 4.29492143,11.1245852
144
+ C4.29492143,15.076437 7.48781429,18.2916963 11.4117786,18.2916963 C15.4630643,18.2916963
145
+ 18.6370643,15.1440667 18.6370643,11.1245852 C18.6370643,7.17273333 15.3957071,3.95747407
146
+ 11.4117786,3.95747407 M11.4117786,21.8116963 C5.47120714,21.8116963 0.637921429,17.0173259
147
+ 0.637921429,11.1245852 C0.637921429,5.23102963 5.47120714,0.437474074 11.4117786,0.437474074
148
+ C17.4131357,0.437474074 22.2948857,5.23102963 22.2948857,11.1245852 C22.2948857,17.0173259
149
+ 17.4131357,21.8116963 11.4117786,21.8116963"
150
+ fill={fill}
151
+ mask="url(#mask-6)"
152
+ />
153
+ </g>
154
+ <path
155
+ d="M18.4449438,2.76315789 C14.2664695,2.76315789 10.8579539,6.30033291 10.8579539,10.5 C10.8579539,
156
+ 14.8111921 14.2664695,18.2368421 18.4449438,18.2368421 C22.7327025,18.2368421 26.1412182,14.8111921
157
+ 26.1412182,10.5 C26.1412182,6.30033291 22.7327025,2.76315789 18.4449438,2.76315789 M18.4449438,
158
+ 0 C24.2717918,0 29,4.75229867 29,10.5 C29,16.3575618 24.2717918,21 18.4449438,21 C12.7273802,
159
+ 21 8,16.3575618 8,10.5 C8,4.75229867 12.7273802,0 18.4449438,0"
160
+ fill={fill}
161
+ />
162
+ </g>
163
+ </svg>
164
+ );
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+
3
+ import { IconContainer, IconContainerPropTypes } from '../IconContainer';
4
+
5
+ export const ThreeDotsIcon = (props) => (
6
+ <IconContainer {...props}>
7
+ <svg width="24" height="25" fill="none" xmlns="http://www.w3.org/2000/svg">
8
+ <path
9
+ d="M12 8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2Zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Z"
10
+ className="fill"
11
+ />
12
+ </svg>
13
+ </IconContainer>
14
+ );
15
+
16
+ ThreeDotsIcon.propTypes = {
17
+ ...IconContainerPropTypes,
18
+ };
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+
3
+ export const Thumb = ({ titleTag, width = 40, fill = "#02ac61" }) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ viewBox="0 0 34.3 45.5"
7
+ style={{
8
+ width
9
+ }}
10
+ >
11
+ {titleTag && <title>{titleTag}</title>}
12
+ <path
13
+ fill={fill}
14
+ d="M2.74,44.67H7.09a2.7,2.7,0,0,0,1.52-.49A5.07,5.07,0,0,0,12,45.5H25.88c3.38,0,5.58-1.86,6-4.94l1.86-11.69v-.4a5.14,5.14,0,0,0-5.14-5.13H22.21V18.93c0-2.34-.68-4.06-2.1-5.08a6.45,6.45,0,0,0-5.29-.69,1.43,1.43,0,0,0-1,1.37v5.68c0,3.81-4.36,5.23-4.9,5.43a2.69,2.69,0,0,0-1.9-.79H2.69A2.72,2.72,0,0,0,0,27.54V41.93A2.8,2.8,0,0,0,2.74,44.67Zm7-16.24c.79-.25,7-2.3,7-8.18V15.8a2.77,2.77,0,0,1,1.76.39c.64.44.93,1.37.93,2.74V24.8a1.42,1.42,0,0,0,1.42,1.42h7.78a2.3,2.3,0,0,1,2.3,2.3v.05l-1.86,11.6v0c-.1.68-.29,2.44-3.13,2.44H12.08a2.3,2.3,0,0,1-2.3-2.3Zm-6.89-.69h4V41.83h-4ZM23,11.3a1.46,1.46,0,0,1,0-2L27.4,4.89a1.42,1.42,0,1,1,2,2L25,11.3a1.37,1.37,0,0,1-2,0Zm3.67,4h6.22a1.42,1.42,0,1,1,0,2.84H26.66a1.42,1.42,0,0,1,0-2.84ZM16.15,7.63V1.42a1.42,1.42,0,1,1,2.83,0V7.63a1.42,1.42,0,1,1-2.83,0ZM5.72,6.9a1.47,1.47,0,0,1,0-2,1.45,1.45,0,0,1,2,0l4.4,4.41a1.44,1.44,0,0,1,0,2,1.36,1.36,0,0,1-1,.44,1.45,1.45,0,0,1-1-.44ZM.83,16.73a1.43,1.43,0,0,1,1.42-1.42H8.46a1.42,1.42,0,0,1,0,2.84H2.3A1.43,1.43,0,0,1,.83,16.73Z"
15
+ />
16
+ </svg>
17
+ );
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+
3
+ export const Traffic = ({ titleTag, width = 25, stroke = "#33b222", strokeWidth = 0.8 }) => (
4
+ <svg
5
+ xmlns='http://www.w3.org/2000/svg'
6
+ viewBox='0 0 13 22'
7
+ style={{
8
+ width,
9
+ }}>
10
+ {titleTag && <title>{titleTag}</title>}
11
+ <path
12
+ stroke={stroke}
13
+ strokeWidth={strokeWidth}
14
+ d='M2.104 21h9.292c.568 0 1.03-.462 1.03-1.03V2.03c0-.568-.462-1.03-1.03-1.03H2.104c-.568 0-1.03.462-1.03 1.03v17.94c0 .568.462 1.03 1.03 1.03zm-.53-18.97c0-.292.237-.53.53-.53h9.292c.293 0 .53.238.53.53v17.94c0 .292-.237.53-.53.53H2.104a.531.531 0 01-.53-.53V2.03z'
15
+ />
16
+ <path
17
+ stroke={stroke}
18
+ strokeWidth={strokeWidth}
19
+ d='M6.75 7.412A2.366 2.366 0 009.113 5.05c0-1.303-1.06-2.363-2.363-2.363s-2.363 1.06-2.363 2.363A2.366 2.366 0 006.75 7.412zm0-4.226c1.027 0 1.863.836 1.863 1.863S7.777 6.912 6.75 6.912 4.887 6.077 4.887 5.05s.836-1.863 1.863-1.863zM6.75 13.363c1.303 0 2.363-1.06 2.363-2.363S8.053 8.637 6.75 8.637 4.387 9.697 4.387 11s1.06 2.363 2.363 2.363zm0-4.226c1.027 0 1.863.836 1.863 1.863s-.836 1.863-1.863 1.863S4.887 12.027 4.887 11s.836-1.863 1.863-1.863zM6.75 19.314a2.366 2.366 0 002.363-2.363c0-1.303-1.06-2.363-2.363-2.363s-2.363 1.06-2.363 2.363a2.366 2.366 0 002.363 2.363zm0-4.226c1.027 0 1.863.835 1.863 1.863s-.836 1.863-1.863 1.863-1.863-.836-1.863-1.863.836-1.863 1.863-1.863z'
20
+ />
21
+ </svg>
22
+ );
@@ -0,0 +1,47 @@
1
+ import React from 'react';
2
+
3
+ export const Twitter = ({
4
+ titleTag = "Twitter",
5
+ width = 24,
6
+ bgFill = "#1da1f2",
7
+ stroke = null,
8
+ birdFill = null
9
+ }) => (
10
+ <svg
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ viewBox="0 0 25 25"
13
+ style={{
14
+ width,
15
+ height: width
16
+ }}
17
+ >
18
+ {titleTag && <title>{titleTag}</title>}
19
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="nonzero">
20
+ <g fill={stroke ? "transparent" : !birdFill ? bgFill : "transparent"}>
21
+ <path
22
+ d="M21.875,25 L3.125,25 C1.4,25 0,23.6 0,21.875 L0,3.125 C0,1.4 1.4,0 3.125,0 L21.875,
23
+ 0 C23.6,0 25,1.4 25,3.125 L25,21.875 C25,23.6 23.6,25 21.875,25 Z"
24
+ />
25
+ </g>
26
+ <g
27
+ transform="translate(4.687500, 6.125000)"
28
+ fill={stroke ? "transparent" : birdFill ? birdFill : "#FFFFFF"}
29
+ stroke={stroke && stroke}
30
+ >
31
+ <path
32
+ d="M4.9125,12.725 C10.80625,12.725 14.03125,7.8375 14.03125,3.60625 C14.03125,3.46875
33
+ 14.03125,3.33125 14.025,3.19375 C14.65,2.74375 15.19375,2.175 15.625,1.53125 C15.05,1.7875
34
+ 14.43125,1.95625 13.78125,2.0375 C14.44375,1.64375 14.95,1.0125 15.19375,0.2625 C14.575,0.63125
35
+ 13.8875,0.89375 13.15625,1.0375 C12.56875,0.4125 11.7375,0.025 10.81875,0.025 C9.05,0.025 7.6125,
36
+ 1.4625 7.6125,3.23125 C7.6125,3.48125 7.64375,3.725 7.69375,3.9625 C5.03125,3.83125 2.66875,2.55
37
+ 1.0875,0.6125 C0.8125,1.0875 0.65625,1.6375 0.65625,2.225 C0.65625,3.3375 1.225,4.31875 2.08125,
38
+ 4.89375 C1.55625,4.875 1.0625,4.73125 0.63125,4.49375 C0.63125,4.50625 0.63125,4.51875 0.63125,
39
+ 4.5375 C0.63125,6.0875 1.7375,7.3875 3.2,7.68125 C2.93125,7.75625 2.65,7.79375 2.35625,7.79375
40
+ C2.15,7.79375 1.95,7.775 1.75625,7.7375 C2.1625,9.0125 3.35,9.9375 4.75,9.9625 C3.65,10.825 2.26875,
41
+ 11.3375 0.76875,11.3375 C0.5125,11.3375 0.25625,11.325 0.00625,11.29375 C1.41875,12.19375 3.10625,
42
+ 12.725 4.9125,12.725"
43
+ />
44
+ </g>
45
+ </g>
46
+ </svg>
47
+ );
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+
3
+ export const Upload = ({width = 24, height = 24, color = '#333333'}) =>
4
+ <svg width={width} height={height} xmlns="http://www.w3.org/2000/svg">
5
+ <g fill={color} transform="translate(3, 4)">
6
+ <path
7
+ d="M0,12 L0,13.8181818 C0,14.7151515 0.727272727,15.4424242 1.64848485,15.4424242 L15.5636364,15.4424242 C16.4606061,15.4424242 17.2121212,14.7151515 17.2121212,13.8181818 L17.2121212,12 L16,12 L16,13.8181818 C16,14.0606061 15.8060606,14.230303 15.5636364,14.230303 L1.64848485,14.230303 C1.40606061,14.230303 1.21212121,14.0363636 1.21212121,13.8181818 L1.21212121,12 L0,12 Z"/>
8
+ <path
9
+ d="M8.2969697,0 L8.2969697,9.79393939 L5.8,7.53939394 L5,8.43636364 L8.51515152,11.5878788 C8.63636364,11.6848485 8.78181818,11.7333333 8.92727273,11.7333333 C9.07272727,11.7333333 9.21818182,11.6848485 9.33939394,11.5878788 L12.8545455,8.43636364 L12.0545455,7.53939394 L9.50909091,9.81818182 L9.50909091,0 L8.2969697,0 Z"
10
+ transform="translate(8.927273, 5.866667) scale(1, -1) translate(-8.927273, -5.866667)"/>
11
+ </g>
12
+ </svg>;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+
3
+ export const VerticalDots = ({
4
+ titleTag = "Vertical Dots",
5
+ width = 20,
6
+ fill = "#dddddd"
7
+ }) => (
8
+ <svg
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ viewBox="0 0 16 95"
11
+ style={{
12
+ width
13
+ }}
14
+ >
15
+ {titleTag && <title>{titleTag}</title>}
16
+ <g
17
+ fill={fill}
18
+ transform="rotate(-180.000000)"
19
+ transform-origin="center center"
20
+ fillRule="evenodd"
21
+ >
22
+ <circle cx="8" cy="8" r="8" />
23
+ <circle cx="8" cy="40" r="6" />
24
+ <circle cx="8" cy="68" r="4" />
25
+ <circle cx="8" cy="92" r="3" />
26
+ </g>
27
+ </svg>
28
+ );
@@ -0,0 +1,36 @@
1
+ import React from 'react';
2
+
3
+ // from ondmarc app
4
+ export const Warning = ({
5
+ titleTag = "Warning",
6
+ width = 30,
7
+ bgFill = false,
8
+ fill = "#02ac61",
9
+ fontWeight = 600,
10
+ fontFamily = "'Raleway', sans-serif"
11
+ }) => (
12
+ <svg
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ viewBox="0 0 31 31"
15
+ style={{
16
+ width,
17
+ fontWeight
18
+ }}
19
+ >
20
+ {titleTag && <title>{titleTag}</title>}
21
+ {bgFill && (
22
+ <circle cx="15.5" cy="15.5" r="15.5" fillRule="evenodd" fill={bgFill} />
23
+ )}
24
+ <text
25
+ transform={bgFill ? "translate(13 21.5)" : "translate(12 23)"}
26
+ fill={fill}
27
+ fontFamily={fontFamily}
28
+ fontSize={16 + (width - 30) / 6}
29
+ >
30
+ !
31
+ </text>
32
+ </svg>
33
+ );
34
+ // text translate (bgFill):
35
+ // small - 13 21
36
+ // large - 12.5 23.5
@@ -0,0 +1,44 @@
1
+ import React from 'react';
2
+
3
+ export const WarningTriangle = ({
4
+ titleTag = "Warning",
5
+ width = 50,
6
+ fill = "#02ac61",
7
+ fillBar = false,
8
+ }) => (
9
+ <svg
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ viewBox="0 0 18 16"
12
+ style={{
13
+ width,
14
+ }}
15
+ >
16
+ {titleTag && <title>{titleTag}</title>}
17
+ <g stroke="none" fill={fill} fillRule="nonzero">
18
+ <path
19
+ fill={fill}
20
+ d="M17.31305,13.65851L10.04346,0.89758C9.77563,0.42926,9.33563,0.1756,8.79999,0.1756
21
+ c-0.51648,0-0.97565,0.27319-1.24347,0.72198L0.28693,13.65851c-0.26782,0.46832-0.26782,0.99518,0,1.46344
22
+ c0.26788,0.46832,0.70789,0.72192,1.24353,0.72192h14.53912c0.51648,0,0.97565-0.27313,1.24347-0.72192
23
+ C17.56177,14.65369,17.56177,14.12683,17.31305,13.65851z M16.3374,14.53656l-0.01917,0.01953
24
+ c0,0.01953-0.09564,0.15613-0.26782,0.15613H1.53046c-0.15308,0-0.22961-0.0976-0.28699-0.17566c0,0-0.09564-0.15607,0-0.33167
25
+ l7.2887-12.76099c0.09564-0.15613,0.24872-0.1756,0.26782-0.1756c0.01917,0,0.19135,0,0.28699,0.1756L16.3374,14.2049
26
+ C16.43304,14.38049,16.3374,14.53656,16.3374,14.53656z"
27
+ />
28
+ <rect
29
+ fill={fillBar ? fill : "none"}
30
+ x="8.24524"
31
+ y="7.78534"
32
+ width="1.09039"
33
+ height="5.38538"
34
+ />
35
+ <rect
36
+ fill={fillBar ? fill : "none"}
37
+ x="8.24524"
38
+ y="5.7561"
39
+ width="1.09039"
40
+ height="1.34631"
41
+ />
42
+ </g>
43
+ </svg>
44
+ );
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+
3
+ export const Youtube = ({
4
+ titleTag = "Youtube",
5
+ width = 35,
6
+ fill = "#ffffff",
7
+ bgFill = "#ff0000"
8
+ }) => (
9
+ <svg
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ x="0px"
12
+ y="0px"
13
+ viewBox="0 0 36 35"
14
+ style={{
15
+ width,
16
+ height: width
17
+ }}
18
+ >
19
+ {titleTag && <title>{titleTag}</title>}
20
+ <path
21
+ fill={bgFill}
22
+ d="M34.3,8.8c-0.4-1.5-1.5-2.6-3-3C28.7,5,18,5,18,5S7.4,5,4.7,5.7c-1.5,0.4-2.6,1.5-3,3
23
+ C1,11.4,1,17,1,17s0,5.6,0.7,8.2c0.4,1.5,1.5,2.6,3,3C7.4,29,18,29,18,29s10.6,0,13.3-0.7c1.5-0.4,2.6-1.5,3-3
24
+ c0.7-2.7,0.7-8.2,0.7-8.2S35.1,11.4,34.3,8.8z"
25
+ />
26
+ <polygon fill={fill} points="14.5,22.1 23.5,17 14.5,11.9" />
27
+ </svg>
28
+ );
@@ -0,0 +1,69 @@
1
+ export * from './ActionsIcon';
2
+ export * from './AddIcon';
3
+ export * from './Arrow';
4
+ export * from './ArrowDown';
5
+ export * from './ArrowIcon';
6
+ export * from './ArrowUp';
7
+ export * from './BarchartHorizontal';
8
+ export * from './BellIcon';
9
+ export * from './BimiSetupIcon';
10
+ export * from './Chevron';
11
+ export * from './ChevronLeft';
12
+ export * from './ChevronRight';
13
+ export * from './ClearIcon';
14
+ export * from './Cloud';
15
+ export * from './Cross';
16
+ export * from './DeleteIcon';
17
+ export * from './DynamicDmarcIcon';
18
+ export * from './EditOutline';
19
+ export * from './Email';
20
+ export * from './EmailSourcesIcon';
21
+ export * from './ExpandLayoutIcon';
22
+ export * from './ExportIcon';
23
+ export * from './Eye';
24
+ export * from './Facebook';
25
+ export * from './FilterList';
26
+ export * from './FindOutHowIcon';
27
+ export * from './FlatArrow';
28
+ export * from './ForwardArrowIcon';
29
+ export * from './Github';
30
+ export * from './Globe';
31
+ export * from './Hand';
32
+ export * from './IngrainIcon';
33
+ export * from './InfinityLoop';
34
+ export * from './InfinityLoopBreak';
35
+ export * from './LanguageIcon';
36
+ export * from './Linkedin';
37
+ export * from './LocationPin';
38
+ export * from './MicrosoftShield';
39
+ export * from './News';
40
+ export * from './Nodes';
41
+ export * from './OnDmarcIcon';
42
+ export * from './OnDmarcLogo';
43
+ export * from './OnDomainIcon';
44
+ export * from './OnInboxIcon';
45
+ export * from './OnInboxLogo';
46
+ export * from './OnInboxManagerIcon';
47
+ export * from './OpenInNewTabIcon';
48
+ export * from './Padlock';
49
+ export * from './PlusIcon';
50
+ export * from './Question';
51
+ export * from './Recruiting';
52
+ export * from './ReportsIcon';
53
+ export * from './SearchIcon';
54
+ export * from './Shield';
55
+ export * from './ShieldPassIcon';
56
+ export * from './ShieldSolid';
57
+ export * from './ShieldWarningIcon';
58
+ export * from './ShieldWarningInvertedIcon';
59
+ export * from './Spinner';
60
+ export * from './Team';
61
+ export * from './ThreeDotsIcon';
62
+ export * from './Thumb';
63
+ export * from './Traffic';
64
+ export * from './Twitter';
65
+ export * from './Upload';
66
+ export * from './VerticalDots';
67
+ export * from './Warning';
68
+ export * from './WarningTriangle';
69
+ export * from './Youtube';
@@ -0,0 +1,19 @@
1
+ import { useState, useEffect } from 'react';
2
+
3
+ const DEBOUNCE_TIME = 100;
4
+
5
+ export const useDebouncedValue = (value, delay = DEBOUNCE_TIME) => {
6
+ const [debouncedValue, setDebouncedValue] = useState(value);
7
+
8
+ useEffect(() => {
9
+ const handler = setTimeout(() => {
10
+ setDebouncedValue(value);
11
+ }, delay);
12
+
13
+ return () => {
14
+ clearTimeout(handler);
15
+ };
16
+ }, [value]);
17
+
18
+ return [debouncedValue];
19
+ };
@@ -0,0 +1,26 @@
1
+ import { useState, useEffect } from 'react';
2
+
3
+ export const useFetch = (url, options) => {
4
+ const [response, setResponse] = useState(null);
5
+ const [error, setError] = useState(null);
6
+ const [isLoading, setIsLoading] = useState(false);
7
+
8
+ useEffect(() => {
9
+ const fetchData = async () => {
10
+ setIsLoading(true);
11
+ try {
12
+ const res = await fetch(url, options);
13
+ const json = await res.json();
14
+ setResponse(json);
15
+ setIsLoading(false);
16
+ } catch (error) {
17
+ setError(error);
18
+ }
19
+ };
20
+ if (url && options) {
21
+ fetchData();
22
+ }
23
+ }, [options, url]);
24
+
25
+ return { response, error, isLoading };
26
+ };
@@ -0,0 +1,25 @@
1
+ import { useState, useEffect } from 'react';
2
+
3
+ export const useIsMobile = () => {
4
+ const [state, setState] = useState(false);
5
+
6
+ useEffect(() => {
7
+ const check = window.matchMedia("(max-width: 767px)");
8
+ const checkIsMobile = () => {
9
+ if (state !== check.matches) {
10
+ setState(check.matches);
11
+ }
12
+ };
13
+
14
+ check.addListener(checkIsMobile);
15
+ checkIsMobile();
16
+ return () => {
17
+ check.removeListener(checkIsMobile);
18
+ };
19
+ }, []);
20
+
21
+ return { isMobile: state };
22
+ };
23
+
24
+ // Use: Place this with your other hooks:
25
+ // const { isMobile } = useIsMobile();
@@ -0,0 +1,14 @@
1
+ import { useEffect, useRef } from 'react';
2
+
3
+ export const useOnClickOutside = callback => {
4
+ const ref = useRef(null);
5
+ useEffect(() => {
6
+ const onClickOutside = evt => {
7
+ if (ref.current && !ref.current.contains(evt.target)) callback();
8
+ };
9
+ document.addEventListener("click", onClickOutside);
10
+ return () => document.removeEventListener("click", onClickOutside);
11
+ }, [callback]);
12
+
13
+ return ref;
14
+ };
@@ -0,0 +1,8 @@
1
+ import { useState, useCallback } from 'react';
2
+
3
+ export const useToggle = (initialState = false) => {
4
+ const [state, setState] = useState(initialState);
5
+ const toggle = useCallback(() => setState(state => !state), []);
6
+
7
+ return [state, toggle];
8
+ };
package/src/index.ts ADDED
@@ -0,0 +1,23 @@
1
+ export * from './hooks/useOnClickOutside';
2
+ export * from './hooks/useFetch';
3
+ export * from './hooks/useIsMobile';
4
+ export * from './hooks/useToggle';
5
+ export * from './hooks/useDebouncedValue';
6
+
7
+ export * from './components/Alert';
8
+ export * from './components/Button';
9
+ export * from './components/Card';
10
+ export * from './components/CardHeader';
11
+ export * from './components/Checkbox';
12
+ export * from './components/CheckboxTree';
13
+ export * from './components/IconContainer';
14
+ export * from './components/Input';
15
+ export * from './components/Pagination';
16
+ export * from './components/Radio';
17
+ export * from './components/Select';
18
+ export * from './components/Switch';
19
+ export * from './components/Table';
20
+ export * from './components/Tabs';
21
+ export * from './components/Typography';
22
+
23
+ export * from './components/icons';
package/tsconfig.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "../../tsconfig"
3
+ }
File without changes
File without changes
File without changes