From 9e57a6c0459b2466a3710090b87664a57101dcbc Mon Sep 17 00:00:00 2001 From: Niclas Date: Fri, 12 Apr 2024 17:27:22 +0200 Subject: [PATCH] Add missing children prop in FloatLabel.d.ts (#6388) --- components/lib/floatlabel/FloatLabel.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/lib/floatlabel/FloatLabel.d.ts b/components/lib/floatlabel/FloatLabel.d.ts index a4d83807f4..648c1640b6 100644 --- a/components/lib/floatlabel/FloatLabel.d.ts +++ b/components/lib/floatlabel/FloatLabel.d.ts @@ -49,6 +49,11 @@ export interface FloatLabelPassThroughOptions { * @group Properties */ export interface FloatLabelProps { + /** + * Used to get the child elements of the component. + * @readonly + */ + children?: React.ReactNode | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {FloatLabelPassThroughOptions}