@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
15 lines (14 loc) • 711 B
TypeScript
export declare const MEDIA_QUERIES: {
readonly onlyLargeDesktop: "@media (min-width: 125rem)";
readonly onlyDesktop: "@media (min-width: 64rem)";
readonly tabletAndDesktop: "@media (min-width: 48rem)";
readonly onlyTablet: `@media (max-width: ${number}rem) and (min-width: 48rem)`;
readonly mobileAndTablet: `@media (max-width: ${number}rem)`;
readonly onlyMobile: `@media (max-width: ${number}rem)`;
readonly matchMedia: {
readonly onlyDesktop: "(min-width: 64rem)";
readonly onlyTablet: `(max-width: ${number}rem) and (min-width: 48rem)`;
readonly onlyMobile: `(max-width: ${number}rem)`;
readonly onlyLargeDesktop: "(min-width: 125rem)";
};
};