Skip to content

Commit

Permalink
fix: add primaryButtonDisabled prop to ProductiveCard (#6100)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmenendez committed Sep 24, 2024
1 parent 0b40cce commit 7d17364
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ export interface ProductiveCardProps extends PropsWithChildren {
* Aria label prop required for OverflowMenu
*/
overflowAriaLabel?: string;
/**
* Determines if the primary button is enabled or not
*/
primaryButtonDisabled?: boolean;
/**
* Optionally specify an href for your Button to become an <a> element
*/
Expand Down Expand Up @@ -255,6 +259,10 @@ ProductiveCard.propTypes = {
* Aria label prop required for OverflowMenu
*/
overflowAriaLabel: PropTypes.string,
/**
* Determines if the primary button is enabled or not
*/
primaryButtonDisabled: PropTypes.bool,
/**
* Optionally specify an href for your Button to become an <a> element
*/
Expand Down

0 comments on commit 7d17364

Please sign in to comment.