@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
11 lines (10 loc) • 419 B
JavaScript
"use client";
//#region packages/@mantine/core/src/components/AppShell/AppShellMediaStyles/is-responsive-size/is-responsive-size.ts
function isResponsiveSize(size) {
if (typeof size !== "object" || size === null) return false;
if (Object.keys(size).length === 1 && "base" in size) return false;
return true;
}
//#endregion
exports.isResponsiveSize = isResponsiveSize;
//# sourceMappingURL=is-responsive-size.cjs.map