@splunk/react-icons 4.12.0 → 4.13.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 +23 -0
- package/ChartGaugeMarker.js +28 -28
- 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/MonitorArrow.d.ts +2 -0
- package/MonitorArrow.js +155 -0
- package/NodeSplit.js +2 -2
- package/PipeS.d.ts +2 -0
- package/PipeS.js +151 -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/ChartGaugeMarker.d.ts +2 -2
- 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/MonitorArrow.d.ts +19 -0
- package/types/icons/PipeS.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 Small visualization element for pie and donut chart
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, progress, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const DonutPie: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default DonutPie;
|
|
@@ -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 Small visualization element for pie and donut chart
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, progress, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const DonutPie25: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default DonutPie25;
|
|
@@ -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 Small visualization element for pie and donut chart
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, progress, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const DonutPie50: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default DonutPie50;
|
|
@@ -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 Small visualization element for pie and donut chart
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, progress, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const DonutPie75: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default DonutPie75;
|
|
@@ -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 Small visualization element for level filler gauge
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, progress, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const LevelGauge14: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default LevelGauge14;
|
|
@@ -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 Small visualization element for level filler gauge
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, progress, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const LevelGauge24: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default LevelGauge24;
|
|
@@ -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 Small visualization element for level filler gauge
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, progress, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const LevelGauge34: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default LevelGauge34;
|
|
@@ -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 Small visualization element for level filler gauge
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, progress, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const LevelGauge44: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default LevelGauge44;
|
|
@@ -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 Pipeline monitoring icon for data management
|
|
12
|
+
Data Flow
|
|
13
|
+
stream, direction, routing, filtering, status check
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const MonitorArrow: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default MonitorArrow;
|
|
@@ -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 Pipeline
|
|
12
|
+
Data Flow
|
|
13
|
+
stream, direction, routing, filtering, status check
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const PipeS: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default PipeS;
|
|
@@ -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 Signal icon for mobile internet or wireless networking
|
|
12
|
+
Actions
|
|
13
|
+
strength, broadcasting, on air, micro waves
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const SignalAntenna: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default SignalAntenna;
|
|
@@ -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 Mobile internet signal level or network connection quality
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, stability, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const SignalColumns14: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default SignalColumns14;
|
|
@@ -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 Mobile internet signal level or network connection quality
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, stability, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const SignalColumns24: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default SignalColumns24;
|
|
@@ -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 Mobile internet signal level or network connection quality
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, stability, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const SignalColumns34: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default SignalColumns34;
|
|
@@ -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 Mobile internet signal level or network connection quality
|
|
12
|
+
Data Visualization
|
|
13
|
+
percentage, stability, sparkline, table cell, status, gauge
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const SignalColumns44: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default SignalColumns44;
|
package/types/icons/Token.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
10
10
|
/**
|
|
11
11
|
* @description Variable token that is used in Dashboard Studio
|
|
12
12
|
Data Type
|
|
13
|
-
dynamic variable parameter, search result, eval
|
|
13
|
+
coin, dollar mark, money, dynamic variable parameter, search result, eval
|
|
14
14
|
*
|
|
15
15
|
*
|
|
16
16
|
* @variants outlined,filled
|
|
@@ -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 Access token code for HEC or any use cases
|
|
12
|
+
Data Type
|
|
13
|
+
coin, dollar mark, money, dynamic variable parameter, search result, eval
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const TokenKey: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default TokenKey;
|
|
@@ -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, available status
|
|
12
|
+
Actions
|
|
13
|
+
Turn on, internet, connection, wifi, mobile computing
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const WiFiSignal: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default WiFiSignal;
|
|
@@ -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;
|