@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.
Files changed (96) hide show
  1. package/ArrowTriangleDown.js +12 -10
  2. package/ArrowTriangleLeft.js +22 -20
  3. package/ArrowTriangleRight.js +22 -20
  4. package/ArrowTriangleUp.js +22 -20
  5. package/CHANGELOG.md +32 -0
  6. package/Calculation.d.ts +2 -0
  7. package/Calculation.js +168 -0
  8. package/Calculator.d.ts +2 -0
  9. package/Calculator.js +156 -0
  10. package/Chain.js +52 -44
  11. package/ChainSlashed.d.ts +2 -0
  12. package/ChainSlashed.js +160 -0
  13. package/ChevronsSlash.js +60 -50
  14. package/CircleSmall.d.ts +2 -0
  15. package/CircleSmall.js +154 -0
  16. package/Containership.js +1 -1
  17. package/ControlFastForward.d.ts +2 -0
  18. package/ControlFastForward.js +154 -0
  19. package/ControlNext.d.ts +2 -0
  20. package/ControlNext.js +158 -0
  21. package/ControlPrevious.d.ts +2 -0
  22. package/ControlPrevious.js +158 -0
  23. package/ControlRewind.d.ts +2 -0
  24. package/ControlRewind.js +154 -0
  25. package/ControlStopCircle.d.ts +2 -0
  26. package/ControlStopCircle.js +158 -0
  27. package/CursorArrow.js +1 -1
  28. package/CylinderWaves.d.ts +2 -0
  29. package/CylinderWaves.js +160 -0
  30. package/DeviceEdgeHub.d.ts +2 -0
  31. package/DeviceEdgeHub.js +162 -0
  32. package/DocumentDrawer.js +2 -2
  33. package/ExclamationTriangle.js +6 -6
  34. package/ExclamationTriangleDown.d.ts +2 -0
  35. package/ExclamationTriangleDown.js +160 -0
  36. package/FileChevronRight.d.ts +2 -0
  37. package/FileChevronRight.js +158 -0
  38. package/Flashlight.js +2 -2
  39. package/Hammer.js +2 -2
  40. package/HotAirBalloon.js +2 -2
  41. package/IconProvider.d.ts +1 -1
  42. package/Lightning.js +1 -1
  43. package/Pin.js +2 -2
  44. package/RectangularsArrowInto.js +1 -1
  45. package/SVG.d.ts +3 -3
  46. package/SVGEnterprise.d.ts +5 -5
  47. package/Scissors.js +2 -2
  48. package/Shield.d.ts +2 -0
  49. package/Shield.js +158 -0
  50. package/Snowflake.js +1 -1
  51. package/SquaresLayered.js +2 -2
  52. package/StarSparklesDouble.js +6 -8
  53. package/Telescope.js +43 -43
  54. package/TextAlignBottom.d.ts +2 -0
  55. package/TextAlignBottom.js +156 -0
  56. package/TextAlignCenter.d.ts +2 -0
  57. package/TextAlignCenter.js +160 -0
  58. package/TextAlignLeft.d.ts +2 -0
  59. package/TextAlignLeft.js +160 -0
  60. package/TextAlignRight.d.ts +2 -0
  61. package/TextAlignRight.js +160 -0
  62. package/TextAlignTop.d.ts +2 -0
  63. package/TextAlignTop.js +156 -0
  64. package/TextAlignVerticalCenter.d.ts +2 -0
  65. package/TextAlignVerticalCenter.js +158 -0
  66. package/TextDirectionMinus45.js +2 -2
  67. package/Triangle.js +22 -20
  68. package/TriangleDown.js +156 -0
  69. package/WindowGlobe.d.ts +2 -0
  70. package/WindowGlobe.js +172 -0
  71. package/package.json +12 -10
  72. package/test-runner-jest.config.js +1 -0
  73. package/types/icons/Calculation.d.ts +20 -0
  74. package/types/icons/Calculator.d.ts +20 -0
  75. package/types/icons/Chain.d.ts +2 -2
  76. package/types/icons/ChainSlashed.d.ts +20 -0
  77. package/types/icons/ChevronsSlash.d.ts +2 -2
  78. package/types/icons/CircleSmall.d.ts +20 -0
  79. package/types/icons/ControlFastForward.d.ts +20 -0
  80. package/types/icons/ControlNext.d.ts +20 -0
  81. package/types/icons/ControlPrevious.d.ts +20 -0
  82. package/types/icons/ControlRewind.d.ts +20 -0
  83. package/types/icons/ControlStopCircle.d.ts +20 -0
  84. package/types/icons/CylinderWaves.d.ts +20 -0
  85. package/types/icons/DeviceEdgeHub.d.ts +20 -0
  86. package/types/icons/ExclamationTriangleDown.d.ts +20 -0
  87. package/types/icons/FileChevronRight.d.ts +20 -0
  88. package/types/icons/Shield.d.ts +20 -0
  89. package/types/icons/TextAlignBottom.d.ts +20 -0
  90. package/types/icons/TextAlignCenter.d.ts +20 -0
  91. package/types/icons/TextAlignLeft.d.ts +20 -0
  92. package/types/icons/TextAlignRight.d.ts +20 -0
  93. package/types/icons/TextAlignTop.d.ts +20 -0
  94. package/types/icons/TextAlignVerticalCenter.d.ts +20 -0
  95. package/types/icons/TriangleDown.d.ts +20 -0
  96. 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;