@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.
- package/ArrowTriangleDown.js +12 -10
- package/ArrowTriangleLeft.js +22 -20
- package/ArrowTriangleRight.js +22 -20
- package/ArrowTriangleUp.js +22 -20
- package/CHANGELOG.md +20 -0
- package/Calculation.d.ts +2 -0
- package/Calculation.js +168 -0
- package/Calculator.d.ts +2 -0
- package/Calculator.js +156 -0
- package/ChevronsSlash.js +60 -50
- package/Containership.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/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/Hammer.js +2 -2
- package/HotAirBalloon.js +2 -2
- package/IconProvider.d.ts +1 -1
- package/Lightning.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/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/ChevronsSlash.d.ts +2 -2
- 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
|
+
* @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;
|