UNPKG

native-base

Version:

Essential cross-platform UI components for React Native

9 lines (7 loc) 182 B
import type { ITheme } from '../../theme/index'; export type ResponsiveValue<T> = | T | null | undefined | Array<T | null> | { [key in keyof ITheme['breakpoints']]?: T };