@splunk/react-icons 4.4.0 → 4.6.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 (86) 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/ChevronsSlash.js +60 -50
  11. package/Containership.js +1 -1
  12. package/CylinderWaves.d.ts +2 -0
  13. package/CylinderWaves.js +160 -0
  14. package/DeviceEdgeHub.d.ts +2 -0
  15. package/DeviceEdgeHub.js +162 -0
  16. package/ExclamationTriangle.js +6 -6
  17. package/ExclamationTriangleDown.d.ts +2 -0
  18. package/ExclamationTriangleDown.js +160 -0
  19. package/FileChevronRight.d.ts +2 -0
  20. package/FileChevronRight.js +158 -0
  21. package/Hammer.js +2 -2
  22. package/HotAirBalloon.js +2 -2
  23. package/IconProvider.d.ts +1 -1
  24. package/Lightning.js +1 -1
  25. package/ListNumbered.d.ts +2 -0
  26. package/ListNumbered.js +156 -0
  27. package/QuotationDouble.d.ts +2 -0
  28. package/QuotationDouble.js +148 -0
  29. package/SVG.d.ts +3 -3
  30. package/SVGEnterprise.d.ts +5 -5
  31. package/Scissors.js +2 -2
  32. package/Shield.d.ts +2 -0
  33. package/Shield.js +158 -0
  34. package/Snowflake.js +1 -1
  35. package/TextAlignBottom.d.ts +2 -0
  36. package/TextAlignBottom.js +156 -0
  37. package/TextAlignCenter.d.ts +2 -0
  38. package/TextAlignCenter.js +160 -0
  39. package/TextAlignLeft.d.ts +2 -0
  40. package/TextAlignLeft.js +160 -0
  41. package/TextAlignRight.d.ts +2 -0
  42. package/TextAlignRight.js +160 -0
  43. package/TextAlignTop.d.ts +2 -0
  44. package/TextAlignTop.js +156 -0
  45. package/TextAlignVerticalCenter.d.ts +2 -0
  46. package/TextAlignVerticalCenter.js +158 -0
  47. package/TextBBold.d.ts +2 -0
  48. package/TextBBold.js +148 -0
  49. package/TextDirectionMinus45.js +2 -2
  50. package/TextH.d.ts +2 -0
  51. package/TextH.js +146 -0
  52. package/TextIItalic.d.ts +2 -0
  53. package/TextIItalic.js +146 -0
  54. package/TextSStrikethrough.d.ts +2 -0
  55. package/TextSStrikethrough.js +148 -0
  56. package/TextUUnderline.d.ts +2 -0
  57. package/TextUUnderline.js +148 -0
  58. package/Triangle.js +22 -20
  59. package/TriangleDown.js +156 -0
  60. package/WindowGlobe.d.ts +2 -0
  61. package/WindowGlobe.js +172 -0
  62. package/package.json +12 -10
  63. package/test-runner-jest.config.js +1 -0
  64. package/types/icons/Calculation.d.ts +20 -0
  65. package/types/icons/Calculator.d.ts +20 -0
  66. package/types/icons/ChevronsSlash.d.ts +2 -2
  67. package/types/icons/CylinderWaves.d.ts +20 -0
  68. package/types/icons/DeviceEdgeHub.d.ts +20 -0
  69. package/types/icons/ExclamationTriangleDown.d.ts +20 -0
  70. package/types/icons/FileChevronRight.d.ts +20 -0
  71. package/types/icons/ListNumbered.d.ts +20 -0
  72. package/types/icons/QuotationDouble.d.ts +20 -0
  73. package/types/icons/Shield.d.ts +20 -0
  74. package/types/icons/TextAlignBottom.d.ts +20 -0
  75. package/types/icons/TextAlignCenter.d.ts +20 -0
  76. package/types/icons/TextAlignLeft.d.ts +20 -0
  77. package/types/icons/TextAlignRight.d.ts +20 -0
  78. package/types/icons/TextAlignTop.d.ts +20 -0
  79. package/types/icons/TextAlignVerticalCenter.d.ts +20 -0
  80. package/types/icons/TextBBold.d.ts +20 -0
  81. package/types/icons/TextH.d.ts +20 -0
  82. package/types/icons/TextIItalic.d.ts +20 -0
  83. package/types/icons/TextSStrikethrough.d.ts +20 -0
  84. package/types/icons/TextUUnderline.d.ts +20 -0
  85. package/types/icons/TriangleDown.d.ts +20 -0
  86. 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
+ * @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';
9
+ }
10
+ /**
11
+ *
12
+ *
13
+ *
14
+ * @variants outlined
15
+ */
16
+ declare const TextBBold: {
17
+ ({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
18
+ defaultProps: IconBaseProps;
19
+ };
20
+ export default TextBBold;
@@ -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';
9
+ }
10
+ /**
11
+ *
12
+ *
13
+ *
14
+ * @variants outlined
15
+ */
16
+ declare const TextH: {
17
+ ({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
18
+ defaultProps: IconBaseProps;
19
+ };
20
+ export default TextH;
@@ -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';
9
+ }
10
+ /**
11
+ *
12
+ *
13
+ *
14
+ * @variants outlined
15
+ */
16
+ declare const TextIItalic: {
17
+ ({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
18
+ defaultProps: IconBaseProps;
19
+ };
20
+ export default TextIItalic;
@@ -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';
9
+ }
10
+ /**
11
+ *
12
+ *
13
+ *
14
+ * @variants outlined
15
+ */
16
+ declare const TextSStrikethrough: {
17
+ ({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
18
+ defaultProps: IconBaseProps;
19
+ };
20
+ export default TextSStrikethrough;
@@ -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';
9
+ }
10
+ /**
11
+ *
12
+ *
13
+ *
14
+ * @variants outlined
15
+ */
16
+ declare const TextUUnderline: {
17
+ ({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
18
+ defaultProps: IconBaseProps;
19
+ };
20
+ export default TextUUnderline;
@@ -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;