Fix text colors for warning button

This commit is contained in:
Rene Pfeuffer
2020-01-10 17:10:57 +01:00
parent dd3949b817
commit a7195331a3
3 changed files with 162 additions and 0 deletions

View File

@@ -34,6 +34,15 @@ storiesOf("Buttons|Button", module)
Loading Button
</Button>
</Spacing>
))
.add("Disabled", () => (
<div>
{colors.map(color => (
<Spacing key={color}>
<Button color={color} label={color} disabled={true} />
</Spacing>
))}
</div>
));
const buttonStory = (name: string, storyFn: () => ReactElement) => {