UNPKG

@ecreeth/rn-ui

Version:

Highly customizable and theming components for React Native

28 lines (26 loc) 441 B
import { white, black, } from './colors'; export default { Card: { marginLeft: 10, marginRight: 10, marginTop: 10, borderColor: white, backgroundColor: white, shadowOpacity: 0.18, shadowOffset: { width: 0, height: 1, }, shadowColor: black, shadowRadius: 4, elevation: 4, }, 'Card[rounded=true]': { borderRadius: 2, }, 'Card[rounded=false]': { borderRadius: 0, }, };