UNPKG

@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

28 lines (27 loc) 664 B
/** * Breakpoints * @description Breakpoints for responsive design */ export type BreakpointsType = { ZERO: number; S: number; M: number; L: number; XL?: number; }; /** * 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 */ export declare enum DeviceBreakpointsType { MOBILE = "MOBILE", TABLET = "TABLET", DESKTOP = "DESKTOP", LARGE_DESKTOP = "LARGE_DESKTOP" }