@heycar-uikit/core
Version:
The React UI library from HeyCar
25 lines (24 loc) • 602 B
TypeScript
declare const RESETTED_BREAKPOINTS: {
isMobile: boolean;
isTablet: boolean;
isDesktop: boolean;
isTabletS: boolean;
isTabletL: boolean;
isDesktopS: boolean;
isDesktopM: boolean;
isDesktopL: boolean;
};
declare function useBreakpoint(): {
breakpoints: {
isMobile: boolean;
isTablet: boolean;
isDesktop: boolean;
isTabletS: boolean;
isTabletL: boolean;
isDesktopS: boolean;
isDesktopM: boolean;
isDesktopL: boolean;
};
width: number;
};
export { useBreakpoint as default, RESETTED_BREAKPOINTS };