UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

12 lines (11 loc) 313 B
import * as React from 'react'; export function isComponentType(component, type) { if (!React.isValidElement(component)) { return false; } if (typeof component.type === 'string') { return false; } return component.type.displayName === type; } //# sourceMappingURL=utils.js.map