Skip to content

Commit

Permalink
Remove unused defaultValue in story
Browse files Browse the repository at this point in the history
  • Loading branch information
EMaksy committed Jun 9, 2023
1 parent e38dcb6 commit 81390ab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/components/Spinner.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { EOS_LOADING_ANIMATED } from 'eos-icons-react';
function Spinner({ className = '', size = 'm' }) {
return (
<div role="alert" aria-label="Loading" className={className}>
<EOS_LOADING_ANIMATED size={size} className={'fill-jungle-green-500'} />
<EOS_LOADING_ANIMATED size={size} className="fill-jungle-green-500" />
</div>
);
}
Expand Down
1 change: 0 additions & 1 deletion assets/js/components/Spinner.stories.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const Default = {
description: 'Add padding or margin',
table: {
type: { summary: 'string' },
defaultValue: { summary: '""' },
},
},
size: {
Expand Down

0 comments on commit 81390ab

Please sign in to comment.