@splunk/react-icons 5.9.0 → 5.10.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/ArrowTrendRightDown.d.ts +2 -0
- package/ArrowTrendRightDown.js +146 -0
- package/ArrowTrendRightUp.d.ts +2 -0
- package/ArrowTrendRightUp.js +146 -0
- package/BackgroundBalloon.d.ts +2 -0
- package/BackgroundBalloon.js +146 -0
- package/BackgroundBell.d.ts +2 -0
- package/BackgroundBell.js +146 -0
- package/BackgroundCircle.d.ts +2 -0
- package/BackgroundCircle.js +146 -0
- package/BackgroundDiamond.d.ts +2 -0
- package/BackgroundDiamond.js +146 -0
- package/BackgroundFire.d.ts +2 -0
- package/BackgroundFire.js +146 -0
- package/BackgroundFlame.d.ts +2 -0
- package/BackgroundFlame.js +146 -0
- package/BackgroundHexagon.d.ts +2 -0
- package/BackgroundHexagon.js +146 -0
- package/BackgroundLightning.d.ts +2 -0
- package/BackgroundLightning.js +146 -0
- package/BackgroundSquare.d.ts +2 -0
- package/BackgroundSquare.js +146 -0
- package/BackgroundStarEightPoints.d.ts +2 -0
- package/BackgroundStarEightPoints.js +146 -0
- package/BackgroundStarSparklesDouble.d.ts +2 -0
- package/BackgroundStarSparklesDouble.js +146 -0
- package/BackgroundTriangle.d.ts +2 -0
- package/BackgroundTriangle.js +146 -0
- package/BackgroundTriangleDown.d.ts +2 -0
- package/BackgroundTriangleDown.js +146 -0
- package/BackgroundTrianglesLayeredDouble.d.ts +2 -0
- package/BackgroundTrianglesLayeredDouble.js +146 -0
- package/BackgroundTrianglesLayeredTriple.d.ts +2 -0
- package/BackgroundTrianglesLayeredTriple.js +146 -0
- package/CHANGELOG.md +27 -0
- package/ChartLineTrendDown.d.ts +2 -0
- package/ChartLineTrendDown.js +150 -0
- package/ChartLineTrendUp.d.ts +2 -0
- package/ChartLineTrendUp.js +150 -0
- package/ChartParallelCoordinates.js +1 -1
- package/CogSquare.d.ts +2 -0
- package/CogSquare.js +156 -0
- package/DonutPie75.js +2 -2
- package/Fire.js +1 -1
- package/LICENSE +1 -1
- package/Lightning.js +1 -1
- package/WindowBellList.d.ts +2 -0
- package/WindowBellList.js +160 -0
- package/WindowPulse.d.ts +2 -0
- package/WindowPulse.js +152 -0
- package/docker-compose.yml +1 -1
- package/icon-catalog.json +264 -0
- package/package.json +4 -4
- package/types/icons/ArrowTrendRightDown.d.ts +17 -0
- package/types/icons/ArrowTrendRightUp.d.ts +17 -0
- package/types/icons/BackgroundBalloon.d.ts +17 -0
- package/types/icons/BackgroundBell.d.ts +17 -0
- package/types/icons/BackgroundCircle.d.ts +17 -0
- package/types/icons/BackgroundDiamond.d.ts +17 -0
- package/types/icons/BackgroundFire.d.ts +17 -0
- package/types/icons/BackgroundFlame.d.ts +17 -0
- package/types/icons/BackgroundHexagon.d.ts +17 -0
- package/types/icons/BackgroundLightning.d.ts +17 -0
- package/types/icons/BackgroundSquare.d.ts +17 -0
- package/types/icons/BackgroundStarEightPoints.d.ts +17 -0
- package/types/icons/BackgroundStarSparklesDouble.d.ts +17 -0
- package/types/icons/BackgroundTriangle.d.ts +17 -0
- package/types/icons/BackgroundTriangleDown.d.ts +17 -0
- package/types/icons/BackgroundTrianglesLayeredDouble.d.ts +17 -0
- package/types/icons/BackgroundTrianglesLayeredTriple.d.ts +17 -0
- package/types/icons/ChartLineTrendDown.d.ts +17 -0
- package/types/icons/ChartLineTrendUp.d.ts +17 -0
- package/types/icons/CogSquare.d.ts +17 -0
- package/types/icons/WindowBellList.d.ts +17 -0
- package/types/icons/WindowPulse.d.ts +17 -0
|
@@ -0,0 +1,17 @@
|
|
|
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 Up trend icon with arrow right up
|
|
12
|
+
* @category Visualization
|
|
13
|
+
* @keywords increasing, delta, plus, high value, positive
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const ChartLineTrendUp: ({ children, variant, ...otherprops }: IconBaseProps) => React.JSX.Element | null;
|
|
17
|
+
export default ChartLineTrendUp;
|
|
@@ -0,0 +1,17 @@
|
|
|
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 User customized event icon for indication, notification, alert, and warning.
|
|
12
|
+
* @category Notifications
|
|
13
|
+
* @keywords caution, box, settings, configurations, status
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const CogSquare: ({ children, variant, ...otherprops }: IconBaseProps) => React.JSX.Element | null;
|
|
17
|
+
export default CogSquare;
|
|
@@ -0,0 +1,17 @@
|
|
|
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 Alert and warning management, triggered alerts, notification list
|
|
12
|
+
* @category Objects
|
|
13
|
+
* @keywords configuration, setting, admin, tasks
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const WindowBellList: ({ children, variant, ...otherprops }: IconBaseProps) => React.JSX.Element | null;
|
|
17
|
+
export default WindowBellList;
|
|
@@ -0,0 +1,17 @@
|
|
|
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 Monitoring activities, server and application status
|
|
12
|
+
* @category Objects
|
|
13
|
+
* @keywords admin, anomaly, line chart, health
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const WindowPulse: ({ children, variant, ...otherprops }: IconBaseProps) => React.JSX.Element | null;
|
|
17
|
+
export default WindowPulse;
|