({ style, ...props })
| 71 | }; |
| 72 | |
| 73 | const DetailsModalHeader = ({ style, ...props }) => { |
| 74 | const { colors } = useTheme(); |
| 75 | const styles = createStyles(colors); |
| 76 | |
| 77 | return <View style={[styles.header, style]} {...props} />; |
| 78 | }; |
| 79 | const DetailsModalTitle = ({ style, ...props }) => { |
| 80 | const { colors } = useTheme(); |
| 81 | const styles = createStyles(colors); |
nothing calls this directly
no test coverage detected