Skip to content

Commit

Permalink
fix: make AddButton not show an empty label
Browse files Browse the repository at this point in the history
  • Loading branch information
LucienLeMagicien committed Sep 23, 2022
1 parent b444702 commit 8a962bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/semantic-ui/src/AddButton/AddButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Button, Icon } from "semantic-ui-react";

function AddButton({ uiSchema, ...props }) {
return (
<Button title="Add Item" {...props} icon size="tiny" labelPosition="left">
<Button title="Add Item" {...props} icon size="tiny">
<Icon name="plus" />
</Button>
);
Expand Down

0 comments on commit 8a962bd

Please sign in to comment.