From 8fbfdf2f377fd78cde8777e80b4561dd117be1b5 Mon Sep 17 00:00:00 2001
From: Daniel Sanchez <daniel.sanchez@gnosis.pm>
Date: Wed, 27 Apr 2022 16:56:11 +0200
Subject: [PATCH] Set v1.1.4 (#197)

* Allow optional children in ButtonLink

* Set v1.1.4
---
 package.json                    | 2 +-
 src/inputs/ButtonLink/index.tsx | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package.json b/package.json
index dce00b35..4b180990 100644
--- a/package.json
+++ b/package.json
@@ -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",
diff --git a/src/inputs/ButtonLink/index.tsx b/src/inputs/ButtonLink/index.tsx
index d606358a..0e2919c0 100644
--- a/src/inputs/ButtonLink/index.tsx
+++ b/src/inputs/ButtonLink/index.tsx
@@ -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>`