UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

20 lines (19 loc) 512 B
import { StyleSheet, PixelRatio } from "react-native"; import Colors from "./colors"; const Components = StyleSheet.create({ accessoryIndicator: { width: 10, height: 10, marginLeft: 10, backgroundColor: "transparent", borderTopWidth: 3 / PixelRatio.get(), borderRightWidth: 3 / PixelRatio.get(), borderColor: Colors.dark60, transform: [ { rotate: "45deg" } ] } }); export default Components;