@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
21 lines • 841 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeviceBreakpointsType = void 0;
/**
* Device Breakpoints
* @description Breakpoints for responsive design
* @enum {string}
* @readonly
* @property {string} MOBILE - Mobile breakpoint
* @property {string} TABLET - Tablet breakpoint
* @property {string} DESKTOP - Desktop breakpoint
* @property {string} LARGE_DESKTOP - Large desktop breakpoint
*/
var DeviceBreakpointsType;
(function (DeviceBreakpointsType) {
DeviceBreakpointsType["MOBILE"] = "MOBILE";
DeviceBreakpointsType["TABLET"] = "TABLET";
DeviceBreakpointsType["DESKTOP"] = "DESKTOP";
DeviceBreakpointsType["LARGE_DESKTOP"] = "LARGE_DESKTOP";
})(DeviceBreakpointsType || (exports.DeviceBreakpointsType = DeviceBreakpointsType = {}));
//# sourceMappingURL=breakpoints.js.map