UNPKG

d2-ui

Version:
12 lines (9 loc) 362 B
import warning from 'warning'; export default function deprecated(propType, explanation) { return function validate(props, propName, componentName) { if (props[propName] != null) { warning(false, `"${propName}" property of "${componentName}" has been deprecated.\n${explanation}`); } return propType(props, propName, componentName); }; }