fix: make slot take any props without type error
This commit is contained in:
parent
f06a6c9697
commit
6ec67941bf
@ -285,7 +285,8 @@ function combinedRef<I>(refs: React.Ref<I | null>[]) {
|
||||
interface SlotProps {
|
||||
children?: React.ReactNode;
|
||||
}
|
||||
export const Slot = React.forwardRef<any, SlotProps>((props, ref) => {
|
||||
export const Slot = React.forwardRef<any, SlotProps & Record<string, any>>(
|
||||
(props, ref) => {
|
||||
const { children, ...slotProps } = props;
|
||||
if (!React.isValidElement(children)) {
|
||||
return null;
|
||||
@ -294,7 +295,8 @@ export const Slot = React.forwardRef<any, SlotProps>((props, ref) => {
|
||||
...mergeReactProps(slotProps, children.props),
|
||||
ref: combinedRef([ref, (children as any).ref]),
|
||||
} as any);
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
export interface AsChild {
|
||||
asChild?: boolean;
|
||||
|
Loading…
x
Reference in New Issue
Block a user