UNPKG

@mui/base

Version:

A library of headless ('unstyled') React UI components and low-level hooks.

12 lines (11 loc) 283 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isHostComponent; /** * Determines if a given element is a DOM element name (i.e. not a React component). */ function isHostComponent(element) { return typeof element === 'string'; }