@splunk/react-icons 4.3.0 → 4.5.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/ArrowTriangleDown.js +12 -10
- package/ArrowTriangleLeft.js +22 -20
- package/ArrowTriangleRight.js +22 -20
- package/ArrowTriangleUp.js +22 -20
- package/CHANGELOG.md +32 -0
- package/Calculation.d.ts +2 -0
- package/Calculation.js +168 -0
- package/Calculator.d.ts +2 -0
- package/Calculator.js +156 -0
- package/Chain.js +52 -44
- package/ChainSlashed.d.ts +2 -0
- package/ChainSlashed.js +160 -0
- package/ChevronsSlash.js +60 -50
- package/CircleSmall.d.ts +2 -0
- package/CircleSmall.js +154 -0
- package/Containership.js +1 -1
- package/ControlFastForward.d.ts +2 -0
- package/ControlFastForward.js +154 -0
- package/ControlNext.d.ts +2 -0
- package/ControlNext.js +158 -0
- package/ControlPrevious.d.ts +2 -0
- package/ControlPrevious.js +158 -0
- package/ControlRewind.d.ts +2 -0
- package/ControlRewind.js +154 -0
- package/ControlStopCircle.d.ts +2 -0
- package/ControlStopCircle.js +158 -0
- package/CursorArrow.js +1 -1
- package/CylinderWaves.d.ts +2 -0
- package/CylinderWaves.js +160 -0
- package/DeviceEdgeHub.d.ts +2 -0
- package/DeviceEdgeHub.js +162 -0
- package/DocumentDrawer.js +2 -2
- package/ExclamationTriangle.js +6 -6
- package/ExclamationTriangleDown.d.ts +2 -0
- package/ExclamationTriangleDown.js +160 -0
- package/FileChevronRight.d.ts +2 -0
- package/FileChevronRight.js +158 -0
- package/Flashlight.js +2 -2
- package/Hammer.js +2 -2
- package/HotAirBalloon.js +2 -2
- package/IconProvider.d.ts +1 -1
- package/Lightning.js +1 -1
- package/Pin.js +2 -2
- package/RectangularsArrowInto.js +1 -1
- package/SVG.d.ts +3 -3
- package/SVGEnterprise.d.ts +5 -5
- package/Scissors.js +2 -2
- package/Shield.d.ts +2 -0
- package/Shield.js +158 -0
- package/Snowflake.js +1 -1
- package/SquaresLayered.js +2 -2
- package/StarSparklesDouble.js +6 -8
- package/Telescope.js +43 -43
- package/TextAlignBottom.d.ts +2 -0
- package/TextAlignBottom.js +156 -0
- package/TextAlignCenter.d.ts +2 -0
- package/TextAlignCenter.js +160 -0
- package/TextAlignLeft.d.ts +2 -0
- package/TextAlignLeft.js +160 -0
- package/TextAlignRight.d.ts +2 -0
- package/TextAlignRight.js +160 -0
- package/TextAlignTop.d.ts +2 -0
- package/TextAlignTop.js +156 -0
- package/TextAlignVerticalCenter.d.ts +2 -0
- package/TextAlignVerticalCenter.js +158 -0
- package/TextDirectionMinus45.js +2 -2
- package/Triangle.js +22 -20
- package/TriangleDown.js +156 -0
- package/WindowGlobe.d.ts +2 -0
- package/WindowGlobe.js +172 -0
- package/package.json +12 -10
- package/test-runner-jest.config.js +1 -0
- package/types/icons/Calculation.d.ts +20 -0
- package/types/icons/Calculator.d.ts +20 -0
- package/types/icons/Chain.d.ts +2 -2
- package/types/icons/ChainSlashed.d.ts +20 -0
- package/types/icons/ChevronsSlash.d.ts +2 -2
- package/types/icons/CircleSmall.d.ts +20 -0
- package/types/icons/ControlFastForward.d.ts +20 -0
- package/types/icons/ControlNext.d.ts +20 -0
- package/types/icons/ControlPrevious.d.ts +20 -0
- package/types/icons/ControlRewind.d.ts +20 -0
- package/types/icons/ControlStopCircle.d.ts +20 -0
- package/types/icons/CylinderWaves.d.ts +20 -0
- package/types/icons/DeviceEdgeHub.d.ts +20 -0
- package/types/icons/ExclamationTriangleDown.d.ts +20 -0
- package/types/icons/FileChevronRight.d.ts +20 -0
- package/types/icons/Shield.d.ts +20 -0
- package/types/icons/TextAlignBottom.d.ts +20 -0
- package/types/icons/TextAlignCenter.d.ts +20 -0
- package/types/icons/TextAlignLeft.d.ts +20 -0
- package/types/icons/TextAlignRight.d.ts +20 -0
- package/types/icons/TextAlignTop.d.ts +20 -0
- package/types/icons/TextAlignVerticalCenter.d.ts +20 -0
- package/types/icons/TriangleDown.d.ts +20 -0
- package/types/icons/WindowGlobe.d.ts +20 -0
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
*
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const ControlPrevious: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default ControlPrevious;
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
*
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const ControlRewind: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default ControlRewind;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Stop button with circle indicates running status or stop sequence action (e.g. AI assistant)
|
|
12
|
+
* @category Controls
|
|
13
|
+
* @keywords play, pause, stop, conversation, stream, streaming, music, video, movie
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const ControlStopCircle: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default ControlStopCircle;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Data storage for Security Lake (Not only for Amazon)
|
|
12
|
+
* @category Data Type
|
|
13
|
+
* @keywords data source, destination, ingest, input
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const CylinderWaves: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default CylinderWaves;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Device(s) of Splunk Edge Hub
|
|
12
|
+
* @category Data Type
|
|
13
|
+
* @keywords monitoring sensors, realtime stream, infrastructure, data source
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const DeviceEdgeHub: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default DeviceEdgeHub;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Severity Lv4 Error (> Warning) [Red] *Use filled style
|
|
12
|
+
* @category Severity
|
|
13
|
+
* @keywords alert, exclamation, notification, caution, warning, error
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const ExclamationTriangleDown: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default ExclamationTriangleDown;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Splunk Documentation, or link to the docs.splunk.com
|
|
12
|
+
* @category Reports
|
|
13
|
+
* @keywords manuals, references, books, guides, products
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const FileChevronRight: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default FileChevronRight;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Security represent, category, protection, anti-virus
|
|
12
|
+
* @category Objects
|
|
13
|
+
* @keywords block cyber attack
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const Shield: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default Shield;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Text box align to bottom
|
|
12
|
+
* @category Formatting
|
|
13
|
+
* @keywords edit, field, cell, textarea, alignment
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const TextAlignBottom: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default TextAlignBottom;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Text box align to horizontal center
|
|
12
|
+
* @category Formatting
|
|
13
|
+
* @keywords edit, field, cell, textarea, alignment
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const TextAlignCenter: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default TextAlignCenter;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Text box align to left
|
|
12
|
+
* @category Formatting
|
|
13
|
+
* @keywords edit, field, cell, textarea, alignment
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const TextAlignLeft: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default TextAlignLeft;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Text box align to right
|
|
12
|
+
* @category Formatting
|
|
13
|
+
* @keywords edit, field, cell, textarea, alignment
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const TextAlignRight: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default TextAlignRight;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Text box align to top
|
|
12
|
+
* @category Formatting
|
|
13
|
+
* @keywords edit, field, cell, textarea, alignment
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const TextAlignTop: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default TextAlignTop;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Text box align to vertical center
|
|
12
|
+
* @category Formatting
|
|
13
|
+
* @keywords edit, field, cell, textarea, alignment
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const TextAlignVerticalCenter: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default TextAlignVerticalCenter;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Severity Lv4 Syslog Minor error (=Error) *Use filled style
|
|
12
|
+
* @category Severity
|
|
13
|
+
* @keywords alert, incident, error, triangle, notification, status
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const TriangleDown: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default TriangleDown;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Browser agent, application language
|
|
12
|
+
* @category Objects
|
|
13
|
+
* @keywords earth, application, screen, settings
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const WindowGlobe: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default WindowGlobe;
|