@splunk/react-icons 4.4.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 (65) 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 +20 -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/SVG.d.ts +3 -3
  26. package/SVGEnterprise.d.ts +5 -5
  27. package/Scissors.js +2 -2
  28. package/Shield.d.ts +2 -0
  29. package/Shield.js +158 -0
  30. package/Snowflake.js +1 -1
  31. package/TextAlignBottom.d.ts +2 -0
  32. package/TextAlignBottom.js +156 -0
  33. package/TextAlignCenter.d.ts +2 -0
  34. package/TextAlignCenter.js +160 -0
  35. package/TextAlignLeft.d.ts +2 -0
  36. package/TextAlignLeft.js +160 -0
  37. package/TextAlignRight.d.ts +2 -0
  38. package/TextAlignRight.js +160 -0
  39. package/TextAlignTop.d.ts +2 -0
  40. package/TextAlignTop.js +156 -0
  41. package/TextAlignVerticalCenter.d.ts +2 -0
  42. package/TextAlignVerticalCenter.js +158 -0
  43. package/TextDirectionMinus45.js +2 -2
  44. package/Triangle.js +22 -20
  45. package/TriangleDown.js +156 -0
  46. package/WindowGlobe.d.ts +2 -0
  47. package/WindowGlobe.js +172 -0
  48. package/package.json +12 -10
  49. package/test-runner-jest.config.js +1 -0
  50. package/types/icons/Calculation.d.ts +20 -0
  51. package/types/icons/Calculator.d.ts +20 -0
  52. package/types/icons/ChevronsSlash.d.ts +2 -2
  53. package/types/icons/CylinderWaves.d.ts +20 -0
  54. package/types/icons/DeviceEdgeHub.d.ts +20 -0
  55. package/types/icons/ExclamationTriangleDown.d.ts +20 -0
  56. package/types/icons/FileChevronRight.d.ts +20 -0
  57. package/types/icons/Shield.d.ts +20 -0
  58. package/types/icons/TextAlignBottom.d.ts +20 -0
  59. package/types/icons/TextAlignCenter.d.ts +20 -0
  60. package/types/icons/TextAlignLeft.d.ts +20 -0
  61. package/types/icons/TextAlignRight.d.ts +20 -0
  62. package/types/icons/TextAlignTop.d.ts +20 -0
  63. package/types/icons/TextAlignVerticalCenter.d.ts +20 -0
  64. package/types/icons/TriangleDown.d.ts +20 -0
  65. 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 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;