UNPKG

rn-custom-style-sheet

Version:

React Native component to select a specific value from a range of values.

16 lines 829 B
import type { StateGuideLineBreakpointType } from '../../Core'; import type { KeyType } from './BreakPointTypes'; export declare const breakpointValue: { base: number; sm: number; md: number; lg: number; xl: number; '2xl': number; }; export declare function up(key: KeyType, guideLineBreakpoint: StateGuideLineBreakpointType): string; export declare function down(key: KeyType, guideLineBreakpoint: StateGuideLineBreakpointType): string; export declare function between(start: KeyType, end: KeyType, guideLineBreakpoint: StateGuideLineBreakpointType): string; export declare function only(key: KeyType, guideLineBreakpoint: StateGuideLineBreakpointType): string; export declare function not(key: KeyType, guideLineBreakpoint: StateGuideLineBreakpointType): string; //# sourceMappingURL=Breakpoint.d.ts.map