@splunk/react-icons 4.12.0 → 4.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/CHANGELOG.md +36 -1
  2. package/Certification.d.ts +2 -0
  3. package/Certification.js +151 -0
  4. package/ChartGaugeLevelMarker.d.ts +2 -0
  5. package/ChartGaugeLevelMarker.js +147 -0
  6. package/DonutPie.d.ts +2 -0
  7. package/DonutPie.js +147 -0
  8. package/DonutPie25.d.ts +2 -0
  9. package/DonutPie25.js +145 -0
  10. package/DonutPie50.d.ts +2 -0
  11. package/DonutPie50.js +145 -0
  12. package/DonutPie75.d.ts +2 -0
  13. package/DonutPie75.js +145 -0
  14. package/LevelGauge14.d.ts +2 -0
  15. package/LevelGauge14.js +147 -0
  16. package/LevelGauge24.d.ts +2 -0
  17. package/LevelGauge24.js +149 -0
  18. package/LevelGauge34.d.ts +2 -0
  19. package/LevelGauge34.js +151 -0
  20. package/LevelGauge44.d.ts +2 -0
  21. package/LevelGauge44.js +153 -0
  22. package/License.d.ts +2 -0
  23. package/License.js +159 -0
  24. package/LicenseCog.d.ts +2 -0
  25. package/LicenseCog.js +165 -0
  26. package/MonitorArrow.d.ts +2 -0
  27. package/MonitorArrow.js +155 -0
  28. package/MonitorArrowUp.d.ts +2 -0
  29. package/MonitorArrowUp.js +149 -0
  30. package/NewSquare.d.ts +2 -0
  31. package/NewSquare.js +153 -0
  32. package/NodeSplit.js +2 -2
  33. package/PipeS.d.ts +2 -0
  34. package/PipeS.js +151 -0
  35. package/ServerLicense.d.ts +2 -0
  36. package/ServerLicense.js +169 -0
  37. package/SignalAntenna.d.ts +2 -0
  38. package/SignalAntenna.js +163 -0
  39. package/SignalColumns14.d.ts +2 -0
  40. package/SignalColumns14.js +147 -0
  41. package/SignalColumns24.d.ts +2 -0
  42. package/SignalColumns24.js +149 -0
  43. package/SignalColumns34.d.ts +2 -0
  44. package/SignalColumns34.js +151 -0
  45. package/SignalColumns44.d.ts +2 -0
  46. package/SignalColumns44.js +153 -0
  47. package/Token.js +1 -1
  48. package/TokenKey.d.ts +2 -0
  49. package/TokenKey.js +157 -0
  50. package/WiFiSignal.d.ts +2 -0
  51. package/WiFiSignal.js +151 -0
  52. package/WiFiSignalSlash.d.ts +2 -0
  53. package/WiFiSignalSlash.js +153 -0
  54. package/package.json +1 -1
  55. package/types/icons/Certification.d.ts +19 -0
  56. package/types/icons/ChartGaugeLevelMarker.d.ts +17 -0
  57. package/types/icons/DonutPie.d.ts +19 -0
  58. package/types/icons/DonutPie25.d.ts +19 -0
  59. package/types/icons/DonutPie50.d.ts +19 -0
  60. package/types/icons/DonutPie75.d.ts +19 -0
  61. package/types/icons/LevelGauge14.d.ts +19 -0
  62. package/types/icons/LevelGauge24.d.ts +19 -0
  63. package/types/icons/LevelGauge34.d.ts +19 -0
  64. package/types/icons/LevelGauge44.d.ts +19 -0
  65. package/types/icons/License.d.ts +19 -0
  66. package/types/icons/LicenseCog.d.ts +19 -0
  67. package/types/icons/MonitorArrow.d.ts +19 -0
  68. package/types/icons/MonitorArrowUp.d.ts +17 -0
  69. package/types/icons/NewSquare.d.ts +17 -0
  70. package/types/icons/PipeS.d.ts +19 -0
  71. package/types/icons/ServerLicense.d.ts +19 -0
  72. package/types/icons/SignalAntenna.d.ts +19 -0
  73. package/types/icons/SignalColumns14.d.ts +19 -0
  74. package/types/icons/SignalColumns24.d.ts +19 -0
  75. package/types/icons/SignalColumns34.d.ts +19 -0
  76. package/types/icons/SignalColumns44.d.ts +19 -0
  77. package/types/icons/Token.d.ts +1 -1
  78. package/types/icons/TokenKey.d.ts +19 -0
  79. package/types/icons/WiFiSignal.d.ts +19 -0
  80. package/types/icons/WiFiSignalSlash.d.ts +19 -0
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+ import SVG from '@splunk/react-icons/SVG';
3
+ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
4
+ children?: React.ReactNode;
5
+ /**
6
+ * Defaults to outlined, determines the variant of the icon to be rendered
7
+ */
8
+ variant?: 'default' | 'outlined' | 'filled';
9
+ }
10
+ /**
11
+ * @description Wireless network or signal off, disabled status
12
+ Actions
13
+ Turn off, no internet, connection, wifi, mobile computing
14
+ *
15
+ *
16
+ * @variants outlined,filled
17
+ */
18
+ declare const WiFiSignalSlash: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
19
+ export default WiFiSignalSlash;