@chakra-ui/system
Version:
Chakra UI system primitives
10 lines (8 loc) • 327 B
TypeScript
/**
* 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 };