UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

6 lines 247 B
import { JSX } from "react"; export type SupportedElements = "div" | "span"; export type BaseSkeletonComponentProps<T extends SupportedElements = "div"> = { as?: T; } & Omit<JSX.IntrinsicElements[T], "ref">; //# sourceMappingURL=types.d.ts.map