Skip to content
This repository has been archived by the owner on May 10, 2020. It is now read-only.

Commit

Permalink
fix(money): button type
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkamyshev committed Feb 18, 2019
1 parent 15f912c commit 4da20ba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion front/src/ui/atoms/button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ interface Props {
}

export const Button = ({ submit = false, children, className }: Props) => (
<AntButton htmlType={resolveType(submit)} className={className}>
<AntButton
htmlType={resolveType(submit)}
className={className}
type="primary"
>
{children}
</AntButton>
)

0 comments on commit 4da20ba

Please sign in to comment.