fix: fix slot type error
Some checks failed
lint-and-check / CLI Check (push) Has been cancelled
lint-and-check / Component Check (push) Has been cancelled

This commit is contained in:
Shinwoo PARK 2025-03-12 13:27:23 +09:00
parent ef2bdbf3e0
commit f122310c37

View File

@ -85,7 +85,10 @@ export const Slot = React.forwardRef<
return null;
}
return React.cloneElement(children, {
...mergeReactProps(safeSlotProps, children.props),
...mergeReactProps(
safeSlotProps,
children.props as Record<string, unknown>,
),
ref: combinedRef([
ref,
(children as unknown as { ref: React.Ref<HTMLElement> }).ref,