xref: /MusicFree/src/utils/rpx.ts (revision bf6e62f27bf21a011995d7561e0093fae1a2d72e)
1import {Dimensions} from 'react-native';
2
3const windowWidth = Dimensions.get('window').width;
4
5export default function (rpx: number) {
6  return (rpx / 750) * windowWidth;
7}
8