25 lines
600 B
TypeScript
25 lines
600 B
TypeScript
import React from 'react';
|
|
import { StyleSheet, View, ViewStyle } from 'react-native';
|
|
|
|
import { themes } from '../../constants/colors';
|
|
import { withTheme } from '../../theme';
|
|
|
|
const styles = StyleSheet.create({
|
|
separator: {
|
|
height: StyleSheet.hairlineWidth
|
|
}
|
|
});
|
|
|
|
interface IListSeparator {
|
|
style?: ViewStyle;
|
|
theme?: string;
|
|
}
|
|
|
|
const ListSeparator = React.memo(({ style, theme }: IListSeparator) => (
|
|
<View style={[styles.separator, style, { backgroundColor: themes[theme!].separatorColor }]} />
|
|
));
|
|
|
|
ListSeparator.displayName = 'List.Separator';
|
|
|
|
export default withTheme(ListSeparator);
|