Skip to content

Commit

Permalink
fix(components): set default label text for button
Browse files Browse the repository at this point in the history
  • Loading branch information
KhizerRehan authored and owilliams320 committed Jul 18, 2023
1 parent 4c44b2e commit dde0252
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion libs/components/src/action-ribbon/action-ribbon.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ export default {
},
};

export const Neutral = ({ label, color, icon, saveDisabled = false }) => {
export const Neutral = ({
label = 'Neutral',
color,
icon,
saveDisabled = false,
}) => {
return `
<cv-action-ribbon
labelText="${label}"
Expand Down

0 comments on commit dde0252

Please sign in to comment.