xylabs/sdk-react

View on GitHub
packages/shared/src/WithChildren.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { ReactNode } from 'react'

/** @deprecated us PropsWithChildren from react instead */
export type WithChildren<T = unknown> = Omit<T, 'children'> & {
  children?: ReactNode | undefined
}