PropsWithoutRef<P>: "ref" extends keyof P
    ? Pick<P, Exclude<keyof P, "ref">>
    : P

Ensures that the props do not include ref at all

Type Parameters

  • P