@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
11 lines • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.onlyDesktopSize = void 0;
const breakpoints_1 = require("../../../types/breakpoints/breakpoints");
const onlyDesktopSize = (device, value) => {
return device === breakpoints_1.DeviceBreakpointsType.DESKTOP || device === breakpoints_1.DeviceBreakpointsType.LARGE_DESKTOP
? value
: undefined;
};
exports.onlyDesktopSize = onlyDesktopSize;
//# sourceMappingURL=onlyDesktopSize.js.map