16 lines
375 B
TypeScript
16 lines
375 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { borderRadius, shadow } from '@theme';
|
|
|
|
export const getStyles = (colors: any) =>
|
|
StyleSheet.create({
|
|
card: {
|
|
backgroundColor: colors.cardBg,
|
|
borderRadius: borderRadius.md,
|
|
padding: 16,
|
|
marginVertical: 8,
|
|
borderWidth: 1,
|
|
borderColor: colors.border,
|
|
...shadow.sm,
|
|
},
|
|
});
|