@windstream/react-shared-components 0.1.29 → 0.1.31

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,5 +1,6 @@
1
1
  import React$1, { ReactNode, FC } from 'react';
2
2
  import { ResponsiveSize } from '@shared/components/brand-button/types';
3
+ import { Fill, Size } from '@shared/components/material-icon/types';
3
4
  import { CheckPlansProps, Asset, Button as Button$1, ButtonGroup } from '@shared/types/micro-components';
4
5
  import { ButtonProps as ButtonProps$1 } from '@shared/contentful/blocks/button/types';
5
6
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -69,6 +70,8 @@ type ButtonProps = {
69
70
  modalSubtitle?: string;
70
71
  onModalButtonClick?: (id?: string) => void;
71
72
  iconName?: string;
73
+ iconFill?: Fill;
74
+ iconSize?: Size;
72
75
  };
73
76
 
74
77
  type Item = {
@@ -471,6 +474,8 @@ interface BlogCardProps$1 {
471
474
  };
472
475
  readMoreText?: string;
473
476
  asGrid?: boolean;
477
+ lgWidth?: string;
478
+ mdWidth?: string;
474
479
  index?: number;
475
480
  }
476
481