@wordpress/components
Version:
UI components for WordPress.
22 lines (21 loc) • 719 B
JavaScript
// packages/components/src/utils/deprecated-36px-size.ts
import deprecated from "@wordpress/deprecated";
function maybeWarnDeprecated36pxSize({
componentName,
__next40pxDefaultSize,
size,
__shouldNotWarnDeprecated36pxSize
}) {
if (__shouldNotWarnDeprecated36pxSize || __next40pxDefaultSize || size !== void 0 && size !== "default") {
return;
}
deprecated(`36px default size for wp.components.${componentName}`, {
since: "6.8",
version: "7.1",
hint: "Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."
});
}
export {
maybeWarnDeprecated36pxSize
};
//# sourceMappingURL=deprecated-36px-size.js.map