diff --git a/packages/dnb-eufemia/src/components/button/Button.d.ts b/packages/dnb-eufemia/src/components/button/Button.d.ts index a7fd6497bbb..bc31398b02e 100644 --- a/packages/dnb-eufemia/src/components/button/Button.d.ts +++ b/packages/dnb-eufemia/src/components/button/Button.d.ts @@ -138,7 +138,7 @@ export type ButtonProps = { */ skeleton?: ButtonSkeleton; disabled?: boolean; - inner_ref?: React.Ref; + inner_ref?: React.Ref; className?: string; innerRef?: any; /** diff --git a/packages/dnb-eufemia/src/components/dropdown/Dropdown.d.ts b/packages/dnb-eufemia/src/components/dropdown/Dropdown.d.ts index 4298bbd202d..a4467b9dfeb 100644 --- a/packages/dnb-eufemia/src/components/dropdown/Dropdown.d.ts +++ b/packages/dnb-eufemia/src/components/dropdown/Dropdown.d.ts @@ -74,11 +74,11 @@ export interface DropdownProps /** * By providing a React.ref you can get the internally used main element (DOM). E.g. `innerRef={myRef}` by using `React.createRef()` or `React.useRef()`. */ - innerRef?: React.Ref; + innerRef?: React.Ref; /** * By providing a React.ref you can get the internally used button element (DOM). E.g. `buttonRef={myRef}` by using `React.createRef()` or `React.useRef()`. */ - buttonRef?: React.Ref; + buttonRef?: React.Ref; /** * Same as `prevent_selection`, but the "selection area" (given title) will not be visible and the icon `more` (three dots) is used. Defaults to `false`. */