diff --git a/packages/react/shared.tsx b/packages/react/shared.tsx index 9eeaf70..1905036 100644 --- a/packages/react/shared.tsx +++ b/packages/react/shared.tsx @@ -285,7 +285,8 @@ function combinedRef(refs: React.Ref[]) { interface SlotProps { children?: React.ReactNode; } -export const Slot = React.forwardRef((props, ref) => { +export const Slot = React.forwardRef>( + (props, ref) => { const { children, ...slotProps } = props; if (!React.isValidElement(children)) { return null; @@ -294,7 +295,8 @@ export const Slot = React.forwardRef((props, ref) => { ...mergeReactProps(slotProps, children.props), ref: combinedRef([ref, (children as any).ref]), } as any); -}); + } +); export interface AsChild { asChild?: boolean;