@audira/carbon-react-native
Version:
Build React Native apps with component and shared patterns using Carbon
7 lines (6 loc) • 389 B
JavaScript
;
import { Breakpoint } from '@audira/carbon-react-native-elements';
export function getToken(windowWidth) {
return windowWidth < Breakpoint.medium.value.px ? 'small' : windowWidth < Breakpoint.large.value.px ? 'medium' : windowWidth < Breakpoint.x_large.value.px ? 'large' : windowWidth < Breakpoint.max.value.px ? 'x_large' : 'max';
}
//# sourceMappingURL=get-token.js.map