@wordpress/components
Version:
UI components for WordPress.
17 lines (16 loc) • 478 B
JavaScript
// packages/components/src/utils/use-deprecated-props.ts
function useDeprecated36pxDefaultSizeProp(props) {
const {
__next36pxDefaultSize,
__next40pxDefaultSize,
...otherProps
} = props;
return {
...otherProps,
__next40pxDefaultSize: __next40pxDefaultSize !== null && __next40pxDefaultSize !== void 0 ? __next40pxDefaultSize : __next36pxDefaultSize
};
}
export {
useDeprecated36pxDefaultSizeProp
};
//# sourceMappingURL=use-deprecated-props.js.map