| 366 | ); |
| 367 | |
| 368 | interface CustomButtonProps extends ButtonProps { |
| 369 | customProp: string; |
| 370 | } |
| 371 | // NOTE: not adding the <{}> causes the generic parameter to be a spread type of CustomButtonProps, |
| 372 | // for some reason this causes children to be inferred as being 'ReactNode & {}' which makes the spread |
| 373 | // invalid. TS3.2 bug? |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…