@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.
Files changed (47) hide show
  1. package/ArrowsCircularDouble.js +1 -1
  2. package/CHANGELOG.md +21 -0
  3. package/Chain.js +52 -44
  4. package/ChainSlashed.d.ts +2 -0
  5. package/ChainSlashed.js +160 -0
  6. package/CircleSmall.d.ts +2 -0
  7. package/CircleSmall.js +154 -0
  8. package/ControlFastForward.d.ts +2 -0
  9. package/ControlFastForward.js +154 -0
  10. package/ControlNext.d.ts +2 -0
  11. package/ControlNext.js +158 -0
  12. package/ControlPrevious.d.ts +2 -0
  13. package/ControlPrevious.js +158 -0
  14. package/ControlRewind.d.ts +2 -0
  15. package/ControlRewind.js +154 -0
  16. package/ControlStopCircle.d.ts +2 -0
  17. package/ControlStopCircle.js +158 -0
  18. package/CursorArrow.js +1 -1
  19. package/DocumentDrawer.js +2 -2
  20. package/FileChevrons.d.ts +2 -0
  21. package/FileChevrons.js +160 -0
  22. package/FileZipped.d.ts +2 -0
  23. package/FileZipped.js +156 -0
  24. package/Flashlight.js +2 -2
  25. package/Pin.js +2 -2
  26. package/PlusSquare.d.ts +2 -0
  27. package/PlusSquare.js +158 -0
  28. package/RectangularsArrowInto.js +1 -1
  29. package/SquaresLayered.js +2 -2
  30. package/StarSparklesDouble.js +6 -8
  31. package/TagMarkerRight.d.ts +2 -0
  32. package/TagMarkerRight.js +154 -0
  33. package/Telescope.js +43 -43
  34. package/package.json +5 -5
  35. package/types/icons/ArrowsCircularDouble.d.ts +1 -1
  36. package/types/icons/Chain.d.ts +2 -2
  37. package/types/icons/ChainSlashed.d.ts +20 -0
  38. package/types/icons/CircleSmall.d.ts +20 -0
  39. package/types/icons/ControlFastForward.d.ts +20 -0
  40. package/types/icons/ControlNext.d.ts +20 -0
  41. package/types/icons/ControlPrevious.d.ts +20 -0
  42. package/types/icons/ControlRewind.d.ts +20 -0
  43. package/types/icons/ControlStopCircle.d.ts +20 -0
  44. package/types/icons/FileChevrons.d.ts +20 -0
  45. package/types/icons/FileZipped.d.ts +20 -0
  46. package/types/icons/PlusSquare.d.ts +20 -0
  47. 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;