react-magma-dom 4.11.0-next.6 → 4.11.0-next.8

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.
@@ -1,4 +1,5 @@
1
1
  import * as React from 'react';
2
+ import { IconProps } from 'react-magma-icons';
2
3
  import { ButtonStyles } from '../Button';
3
4
  export interface DropdownSplitButtonProps extends ButtonStyles {
4
5
  /**
@@ -17,6 +18,10 @@ export interface DropdownSplitButtonProps extends ButtonStyles {
17
18
  * If true, element is disabled
18
19
  */
19
20
  disabled?: boolean;
21
+ /**
22
+ * Leading icon to display on the left side within the component
23
+ */
24
+ leadingIcon?: React.ReactElement<IconProps>;
20
25
  /**
21
26
  * Function that fires when the button is clicked
22
27
  */