@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.
- package/CHANGELOG.md +36 -1
- package/Certification.d.ts +2 -0
- package/Certification.js +151 -0
- package/ChartGaugeLevelMarker.d.ts +2 -0
- package/ChartGaugeLevelMarker.js +147 -0
- package/DonutPie.d.ts +2 -0
- package/DonutPie.js +147 -0
- package/DonutPie25.d.ts +2 -0
- package/DonutPie25.js +145 -0
- package/DonutPie50.d.ts +2 -0
- package/DonutPie50.js +145 -0
- package/DonutPie75.d.ts +2 -0
- package/DonutPie75.js +145 -0
- package/LevelGauge14.d.ts +2 -0
- package/LevelGauge14.js +147 -0
- package/LevelGauge24.d.ts +2 -0
- package/LevelGauge24.js +149 -0
- package/LevelGauge34.d.ts +2 -0
- package/LevelGauge34.js +151 -0
- package/LevelGauge44.d.ts +2 -0
- package/LevelGauge44.js +153 -0
- package/License.d.ts +2 -0
- package/License.js +159 -0
- package/LicenseCog.d.ts +2 -0
- package/LicenseCog.js +165 -0
- package/MonitorArrow.d.ts +2 -0
- package/MonitorArrow.js +155 -0
- package/MonitorArrowUp.d.ts +2 -0
- package/MonitorArrowUp.js +149 -0
- package/NewSquare.d.ts +2 -0
- package/NewSquare.js +153 -0
- package/NodeSplit.js +2 -2
- package/PipeS.d.ts +2 -0
- package/PipeS.js +151 -0
- package/ServerLicense.d.ts +2 -0
- package/ServerLicense.js +169 -0
- package/SignalAntenna.d.ts +2 -0
- package/SignalAntenna.js +163 -0
- package/SignalColumns14.d.ts +2 -0
- package/SignalColumns14.js +147 -0
- package/SignalColumns24.d.ts +2 -0
- package/SignalColumns24.js +149 -0
- package/SignalColumns34.d.ts +2 -0
- package/SignalColumns34.js +151 -0
- package/SignalColumns44.d.ts +2 -0
- package/SignalColumns44.js +153 -0
- package/Token.js +1 -1
- package/TokenKey.d.ts +2 -0
- package/TokenKey.js +157 -0
- package/WiFiSignal.d.ts +2 -0
- package/WiFiSignal.js +151 -0
- package/WiFiSignalSlash.d.ts +2 -0
- package/WiFiSignalSlash.js +153 -0
- package/package.json +1 -1
- package/types/icons/Certification.d.ts +19 -0
- package/types/icons/ChartGaugeLevelMarker.d.ts +17 -0
- package/types/icons/DonutPie.d.ts +19 -0
- package/types/icons/DonutPie25.d.ts +19 -0
- package/types/icons/DonutPie50.d.ts +19 -0
- package/types/icons/DonutPie75.d.ts +19 -0
- package/types/icons/LevelGauge14.d.ts +19 -0
- package/types/icons/LevelGauge24.d.ts +19 -0
- package/types/icons/LevelGauge34.d.ts +19 -0
- package/types/icons/LevelGauge44.d.ts +19 -0
- package/types/icons/License.d.ts +19 -0
- package/types/icons/LicenseCog.d.ts +19 -0
- package/types/icons/MonitorArrow.d.ts +19 -0
- package/types/icons/MonitorArrowUp.d.ts +17 -0
- package/types/icons/NewSquare.d.ts +17 -0
- package/types/icons/PipeS.d.ts +19 -0
- package/types/icons/ServerLicense.d.ts +19 -0
- package/types/icons/SignalAntenna.d.ts +19 -0
- package/types/icons/SignalColumns14.d.ts +19 -0
- package/types/icons/SignalColumns24.d.ts +19 -0
- package/types/icons/SignalColumns34.d.ts +19 -0
- package/types/icons/SignalColumns44.d.ts +19 -0
- package/types/icons/Token.d.ts +1 -1
- package/types/icons/TokenKey.d.ts +19 -0
- package/types/icons/WiFiSignal.d.ts +19 -0
- 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;
|