@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.
Files changed (61) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/ChartGaugeMarker.js +28 -28
  3. package/DonutPie.d.ts +2 -0
  4. package/DonutPie.js +147 -0
  5. package/DonutPie25.d.ts +2 -0
  6. package/DonutPie25.js +145 -0
  7. package/DonutPie50.d.ts +2 -0
  8. package/DonutPie50.js +145 -0
  9. package/DonutPie75.d.ts +2 -0
  10. package/DonutPie75.js +145 -0
  11. package/LevelGauge14.d.ts +2 -0
  12. package/LevelGauge14.js +147 -0
  13. package/LevelGauge24.d.ts +2 -0
  14. package/LevelGauge24.js +149 -0
  15. package/LevelGauge34.d.ts +2 -0
  16. package/LevelGauge34.js +151 -0
  17. package/LevelGauge44.d.ts +2 -0
  18. package/LevelGauge44.js +153 -0
  19. package/MonitorArrow.d.ts +2 -0
  20. package/MonitorArrow.js +155 -0
  21. package/NodeSplit.js +2 -2
  22. package/PipeS.d.ts +2 -0
  23. package/PipeS.js +151 -0
  24. package/SignalAntenna.d.ts +2 -0
  25. package/SignalAntenna.js +163 -0
  26. package/SignalColumns14.d.ts +2 -0
  27. package/SignalColumns14.js +147 -0
  28. package/SignalColumns24.d.ts +2 -0
  29. package/SignalColumns24.js +149 -0
  30. package/SignalColumns34.d.ts +2 -0
  31. package/SignalColumns34.js +151 -0
  32. package/SignalColumns44.d.ts +2 -0
  33. package/SignalColumns44.js +153 -0
  34. package/Token.js +1 -1
  35. package/TokenKey.d.ts +2 -0
  36. package/TokenKey.js +157 -0
  37. package/WiFiSignal.d.ts +2 -0
  38. package/WiFiSignal.js +151 -0
  39. package/WiFiSignalSlash.d.ts +2 -0
  40. package/WiFiSignalSlash.js +153 -0
  41. package/package.json +1 -1
  42. package/types/icons/ChartGaugeMarker.d.ts +2 -2
  43. package/types/icons/DonutPie.d.ts +19 -0
  44. package/types/icons/DonutPie25.d.ts +19 -0
  45. package/types/icons/DonutPie50.d.ts +19 -0
  46. package/types/icons/DonutPie75.d.ts +19 -0
  47. package/types/icons/LevelGauge14.d.ts +19 -0
  48. package/types/icons/LevelGauge24.d.ts +19 -0
  49. package/types/icons/LevelGauge34.d.ts +19 -0
  50. package/types/icons/LevelGauge44.d.ts +19 -0
  51. package/types/icons/MonitorArrow.d.ts +19 -0
  52. package/types/icons/PipeS.d.ts +19 -0
  53. package/types/icons/SignalAntenna.d.ts +19 -0
  54. package/types/icons/SignalColumns14.d.ts +19 -0
  55. package/types/icons/SignalColumns24.d.ts +19 -0
  56. package/types/icons/SignalColumns34.d.ts +19 -0
  57. package/types/icons/SignalColumns44.d.ts +19 -0
  58. package/types/icons/Token.d.ts +1 -1
  59. package/types/icons/TokenKey.d.ts +19 -0
  60. package/types/icons/WiFiSignal.d.ts +19 -0
  61. 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;
@@ -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;