Rocket.Chat.ReactNative/app/containers/List/ListIcon.tsx

31 lines
714 B
TypeScript

import React from 'react';
import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native';
import { CustomIcon, TIconsName } from '../CustomIcon';
import { ICON_SIZE } from './constants';
interface IListIcon {
name: TIconsName;
color?: string;
style?: StyleProp<ViewStyle>;
testID?: string;
size?: number;
}
const styles = StyleSheet.create({
icon: {
alignItems: 'center',
justifyContent: 'center'
}
});
const ListIcon = ({ name, color, style, testID, size }: IListIcon): React.ReactElement => (
<View style={[styles.icon, style]}>
<CustomIcon name={name} color={color} size={size ?? ICON_SIZE} testID={testID} />
</View>
);
ListIcon.displayName = 'List.Icon';
export default ListIcon;