@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
17 lines (12 loc) • 708 B
JavaScript
/* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */
/* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
/* eslint-disable import/no-mutable-exports */
import deprecatedProperty from '../../utilities/warning/deprecated-property';
var checkProps = function checkPropsFunction() {};
if (process.env.NODE_ENV !== 'production') {
checkProps = function checkPropsFunction(COMPONENT, props) {
deprecatedProperty(COMPONENT, props.variant, 'variant', undefined, 'Shade variant is deprecated as there is no background supported currently. Vertical Navigation now uses a default shade.');
};
}
export default checkProps;
//# sourceMappingURL=check-props.js.map