@splunk/react-icons 4.2.0 → 4.4.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/ArrowsCircularDouble.js +1 -1
- package/CHANGELOG.md +21 -0
- package/Chain.js +52 -44
- package/ChainSlashed.d.ts +2 -0
- package/ChainSlashed.js +160 -0
- package/CircleSmall.d.ts +2 -0
- package/CircleSmall.js +154 -0
- 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/DocumentDrawer.js +2 -2
- package/FileChevrons.d.ts +2 -0
- package/FileChevrons.js +160 -0
- package/FileZipped.d.ts +2 -0
- package/FileZipped.js +156 -0
- package/Flashlight.js +2 -2
- package/Pin.js +2 -2
- package/PlusSquare.d.ts +2 -0
- package/PlusSquare.js +158 -0
- package/RectangularsArrowInto.js +1 -1
- package/SquaresLayered.js +2 -2
- package/StarSparklesDouble.js +6 -8
- package/TagMarkerRight.d.ts +2 -0
- package/TagMarkerRight.js +154 -0
- package/Telescope.js +43 -43
- package/package.json +5 -5
- package/types/icons/ArrowsCircularDouble.d.ts +1 -1
- package/types/icons/Chain.d.ts +2 -2
- package/types/icons/ChainSlashed.d.ts +20 -0
- 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/FileChevrons.d.ts +20 -0
- package/types/icons/FileZipped.d.ts +20 -0
- package/types/icons/PlusSquare.d.ts +20 -0
- package/types/icons/TagMarkerRight.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 Circle used for colored indication, status, and multi-purpose
|
|
12
|
+
* @category Objects
|
|
13
|
+
* @keywords geometry, object, shape, sphere, ball
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const CircleSmall: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default CircleSmall;
|
|
@@ -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 ControlFastForward: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default ControlFastForward;
|
|
@@ -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 ControlNext: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default ControlNext;
|
|
@@ -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 Source file, code file, HTML file, text file, Reports,
|
|
12
|
+
* @category document, script, develop, editor
|
|
13
|
+
*
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const FileChevrons: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default FileChevrons;
|
|
@@ -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 Zip archive, compressed file, Reports, document, package, extract
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const FileZipped: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default FileZipped;
|
|
@@ -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 Add or expand action for specific use case. Plus Circle is more standard than square, Actions, button, action, expand/collapse
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const PlusSquare: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default PlusSquare;
|
|
@@ -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 TagMarkerRight: {
|
|
17
|
+
({ children, variant, ...otherprops }: IconBaseProps): JSX.Element | null;
|
|
18
|
+
defaultProps: IconBaseProps;
|
|
19
|
+
};
|
|
20
|
+
export default TagMarkerRight;
|