clapper / packages /timeline /dist /hooks /useBreakpoints.d.ts
jbilcke-hf's picture
jbilcke-hf HF Staff
Upload folder using huggingface_hub
60e3020 verified
raw
history blame contribute delete
182 Bytes
export type Breakpoints = {
isSm: boolean;
isMd: boolean;
isLg: boolean;
isXl: boolean;
is2xl: boolean;
};
export declare function useBreakpoints(): Breakpoints;