UNPKG

@devlander/styled-components-theme

Version:

Devlander's team utilizes this package during the development of their React Native projects. Its primary purpose is to facilitate code reuse by sharing types across multiple projects that uses the styled-components library.

11 lines (10 loc) 309 B
export type PlatformOSType = 'ios' | 'android' | 'macos' | 'windows' | 'web' | 'native'; export type DeviceOnTheme = { screenWidth: number; statusBarHeight: number; screenHeight: number; isTablet: boolean; hasNotch: boolean; hasDynamicIsland: boolean; platform: PlatformOSType; };