UNPKG

@nexara/nativeflow

Version:

Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.

18 lines (16 loc) 289 B
type BreakPointsType = { xs: number, sm: number, md: number, lg: number, xl: number, } const BreakPoints: BreakPointsType = { xs: 0, sm: 360, md: 600, lg: 768, xl: 960 } export default BreakPoints; export type { BreakPointsType };