diff --git a/react/Alert/Readme.md b/react/Alert/Readme.md index 9dcf642f53..6058f238c2 100644 --- a/react/Alert/Readme.md +++ b/react/Alert/Readme.md @@ -17,6 +17,7 @@ const initialVariants = [{ square: false, actionOne: false, actionTwo: false, + filled: false, close: false }] @@ -26,6 +27,7 @@ const initialVariants = [{ {variant => ( : undefined} @@ -81,7 +83,7 @@ const makeButtonColor = color => ['primary', 'secondary'].includes(color) ? unde )} onClose={variant.close ? () => {} : undefined} > - {variant.title && {color.toUpperCase()}} + {variant.title && {color}} This is a {color} alert @@ -97,11 +99,16 @@ const makeButtonColor = color => ['primary', 'secondary'].includes(color) ? unde severity={color} block={variant.block} action={variant.close ? undefined : ( -