diff --git a/src/bootstrap/Button.js b/src/bootstrap/Button.js
index 84ad558..84895f5 100644
--- a/src/bootstrap/Button.js
+++ b/src/bootstrap/Button.js
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
+ * Copyright (C) 2019-2023 CZ.NIC z.s.p.o. (https://www.nic.cz/)
*
* This is free software, licensed under the GNU General Public License v3.
* See /LICENSE for more information.
@@ -31,24 +31,25 @@ export function Button({
children,
...props
}) {
- let buttonClass = className ? `btn ${className}` : "btn btn-primary ";
+ let buttonClass = className ? `btn ${className}` : "btn btn-primary";
if (forisFormSize) {
buttonClass = `${buttonClass} col-sm-12 col-md-3 col-lg-2`;
}
- const span = loading ? (
-
- ) : null;
-
return (
-