@ambuj.bhaskar/react-component-library 0.24.9-alpha → 0.24.11-alpha

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/dist/index.d.ts CHANGED
@@ -662,8 +662,11 @@ export declare const ButtonGroup: React.FC<ButtonGroupProps>;
662
662
 
663
663
  export declare type ButtonGroupProps = {
664
664
  items: {
665
- label: string;
665
+ label?: string;
666
666
  value: string | number;
667
+ icon?: IconName;
668
+ iconPosition?: ButtonProps["iconPosition"];
669
+ contentColor?: Color;
667
670
  disabled?: boolean;
668
671
  loading?: boolean;
669
672
  }[];