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

Commit 8fbfdf2

Browse files
author
Daniel Sanchez
authored
Set v1.1.4 (#197)
* Allow optional children in ButtonLink * Set v1.1.4
1 parent 486ed5d commit 8fbfdf2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gnosis.pm/safe-react-components",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Gnosis UI components",
55
"main": "dist/index.min.js",
66
"typings": "dist/index.d.ts",

src/inputs/ButtonLink/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface Props extends React.ComponentPropsWithoutRef<'button'> {
1010
iconSize?: ThemeIconSize;
1111
textSize?: ThemeTextSize;
1212
color: ThemeColors;
13-
children: React.ReactNode;
13+
children?: React.ReactNode;
1414
}
1515

1616
const StyledButtonLink = styled.button<Props>`

0 commit comments

Comments
 (0)