+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default Datepicker;
diff --git a/app/soapbox/components/ui/form-group/form-group.tsx b/app/soapbox/components/ui/form-group/form-group.tsx
index 75517fc79d..ec0da73e4d 100644
--- a/app/soapbox/components/ui/form-group/form-group.tsx
+++ b/app/soapbox/components/ui/form-group/form-group.tsx
@@ -8,6 +8,8 @@ import Stack from '../stack/stack';
interface IFormGroup {
/** Input label message. */
labelText?: React.ReactNode,
+ /** Input label tooltip message. */
+ labelTitle?: string,
/** Input hint message. */
hintText?: React.ReactNode,
/** Input errors. */
@@ -16,7 +18,7 @@ interface IFormGroup {
/** Input container with label. Renders the child. */
const FormGroup: React.FC