2026-07-02 14:34:19 +05:30

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,
},
});