UNPKG

@material-ui/unstyled

Version:

Unstyled React components with which to implement custom design systems.

8 lines (7 loc) 201 B
/** * Determines if a given element is a DOM element name (i.e. not a React component). */ function isHostComponent(element) { return typeof element === 'string'; } export default isHostComponent;