From 7e05cc1311c5a042fbf8e4593b5e6322a9c251ad Mon Sep 17 00:00:00 2001 From: Gaetan SENN Date: Fri, 24 Jun 2022 15:23:40 +0200 Subject: [PATCH] fix(button): add disabled prop declaration for binding --- lib/components/elements/Button.props.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/components/elements/Button.props.js b/lib/components/elements/Button.props.js index 4c4bfbe..fdaa1e9 100644 --- a/lib/components/elements/Button.props.js +++ b/lib/components/elements/Button.props.js @@ -20,5 +20,11 @@ export default { block: { type: Boolean, default: false + }, + + /** Disabled button */ + disabled: { + type: Boolean, + default: false } }