UNPKG

@chakra-ui/system

Version:
10 lines (8 loc) 327 B
/** * All html and svg elements for chakra components. * This is mostly for `chakra.<element>` syntax. */ declare type DOMElements = keyof JSX.IntrinsicElements; declare function isTag(target: any): boolean; declare function getDisplayName(primitive: any): string; export { DOMElements, isTag as default, getDisplayName };