Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Set v1.1.4 (#197)
Browse files Browse the repository at this point in the history
* Allow optional children in ButtonLink

* Set v1.1.4
  • Loading branch information
Daniel Sanchez authored Apr 27, 2022
1 parent 486ed5d commit 8fbfdf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gnosis.pm/safe-react-components",
"version": "1.1.3",
"version": "1.1.4",
"description": "Gnosis UI components",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/inputs/ButtonLink/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface Props extends React.ComponentPropsWithoutRef<'button'> {
iconSize?: ThemeIconSize;
textSize?: ThemeTextSize;
color: ThemeColors;
children: React.ReactNode;
children?: React.ReactNode;
}

const StyledButtonLink = styled.button<Props>`
Expand Down

0 comments on commit 8fbfdf2

Please sign in to comment.