fix: change children type to plain ReactNode

This commit is contained in:
p-sw 2024-05-24 22:17:32 +09:00
parent 7977ac5038
commit 83b0832a7d

View File

@ -241,7 +241,7 @@ function combinedRef<I>(refs: React.Ref<I | null>[]) {
} }
interface SlotProps { interface SlotProps {
children?: Exclude<React.ReactNode, Iterable<React.ReactNode>> | string; children?: React.ReactNode;
} }
export const Slot = React.forwardRef<any, SlotProps>((props, ref) => { export const Slot = React.forwardRef<any, SlotProps>((props, ref) => {
const { children, ...slotProps } = props; const { children, ...slotProps } = props;
@ -254,16 +254,6 @@ export const Slot = React.forwardRef<any, SlotProps>((props, ref) => {
} as any); } as any);
}); });
export interface MustAsChild { export interface AsChild {
children: React.ReactElement< asChild?: boolean;
unknown,
string | React.JSXElementConstructor<any>
>;
}
export interface OptionalAsChild<T extends boolean> {
children?: T extends true
? React.ReactElement<unknown, string | React.JSXElementConstructor<any>>
: React.ReactNode;
asChild?: T;
} }