aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/handlers/InputChoiceStacked.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-05-16 11:33:29 -0300
committerSebastian <sebasjm@gmail.com>2023-05-16 11:33:29 -0300
commitb35404a2b11905a5b3cdd0d59bdd340fb00ad086 (patch)
tree78d1b8c347e7d0c081046c2ca9423ae5ca21b4ff /packages/exchange-backoffice-ui/src/handlers/InputChoiceStacked.tsx
parent245ab840baf1926ef2c03a8965fce85012887d92 (diff)
final form, i hope
Diffstat (limited to 'packages/exchange-backoffice-ui/src/handlers/InputChoiceStacked.tsx')
-rw-r--r--packages/exchange-backoffice-ui/src/handlers/InputChoiceStacked.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/exchange-backoffice-ui/src/handlers/InputChoiceStacked.tsx b/packages/exchange-backoffice-ui/src/handlers/InputChoiceStacked.tsx
index b19a0d82e..361eb39a3 100644
--- a/packages/exchange-backoffice-ui/src/handlers/InputChoiceStacked.tsx
+++ b/packages/exchange-backoffice-ui/src/handlers/InputChoiceStacked.tsx
@@ -19,6 +19,7 @@ export function InputChoiceStacked(
name,
label,
tooltip,
+ help,
placeholder,
required,
before,
@@ -88,6 +89,11 @@ export function InputChoiceStacked(
})}
</div>
</fieldset>
+ {help && (
+ <p class="mt-2 text-sm text-gray-500" id="email-description">
+ {help}
+ </p>
+ )}
</div>
);
}