14 lines
589 B
TypeScript
14 lines
589 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const ApprovalStyles = StyleSheet.create({
|
|
approvalBadge: { borderRadius: 20, paddingHorizontal: 10, paddingVertical: 3, alignSelf: 'flex-start' },
|
|
approvalItem: { borderWidth: 1, borderRadius: 8, padding: 12, marginBottom: 10 },
|
|
approvalItemHeader: { justifyContent: 'space-between', marginBottom: 8 },
|
|
approvalIconMr: { marginRight: 6 },
|
|
approvalNoteBox: { borderRadius: 8, padding: 8, marginTop: 4 },
|
|
approvalNoteLabel: { marginBottom: 2 },
|
|
approvalEmptyText: { textAlign: 'center' },
|
|
});
|
|
|
|
export default ApprovalStyles;
|