From 2a090086a34f9f996f6c4743ab2a5a85a71098ca Mon Sep 17 00:00:00 2001 From: Brian Holland <56670523+Brian-Holland@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:44:48 -0500 Subject: [PATCH] docs(FeedbackButton): change default color to primary so that button is more visible --- src/components/FeedbackButton/FeedbackButton.stories.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/FeedbackButton/FeedbackButton.stories.tsx b/src/components/FeedbackButton/FeedbackButton.stories.tsx index a668321ac..794c67608 100644 --- a/src/components/FeedbackButton/FeedbackButton.stories.tsx +++ b/src/components/FeedbackButton/FeedbackButton.stories.tsx @@ -29,7 +29,7 @@ export const Default: Story = { args: { backdrop: false, className: '', - color: 'default', + color: 'primary', disabled: false, doSubmit: async () => { action('doSubmit'); @@ -48,7 +48,7 @@ export const AllProps: Story = { block: true, cancelButtonText: 'Cancel', className: '', - color: 'default', + color: 'primary', commentIncluded: false, commentPlaceholder: 'Please give as much detail as you can. Thanks!', commentRequired: false,