dgz-ui-shared
Version:
Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript, dgz-ui library
22 lines • 842 B
TypeScript
/**
* useMediaQuerySizes exposes a set of media query booleans for responsive breakpoints.
*
* @returns {Object} Breakpoint flags object
* @returns {boolean} xxxl - True if viewport width >= 116rem (1856px)
* @returns {boolean} xxl - True if viewport width >= 96rem (1536px)
* @returns {boolean} xl - True if viewport width >= 80rem (1280px)
* @returns {boolean} lg - True if viewport width >= 64rem (1024px)
* @returns {boolean} md - True if viewport width >= 48rem (768px)
* @returns {boolean} sm - True if viewport width >= 40rem (640px)
* @returns {boolean} xs - True if viewport width < 40rem (640px)
*/
export declare const useMediaQuerySizes: () => {
xxxl: boolean;
xxl: boolean;
xl: boolean;
lg: boolean;
md: boolean;
sm: boolean;
xs: boolean;
};
//# sourceMappingURL=useMediaQuerySizes.d.ts.map