simba-mobile-cad4/app/components/Icon/index.js

11 lines
379 B
JavaScript
Raw Permalink Normal View History

2025-01-07 09:47:45 +00:00
import React from 'react';
import {StyleSheet} from 'react-native';
import Icon from 'react-native-vector-icons/FontAwesome5';
import styles from './styles';
export default function Index(props) {
const {style, enableRTL, ...rest} = props;
const layoutStyle = enableRTL ? styles.styleRTL : {};
return <Icon style={StyleSheet.flatten([style, layoutStyle])} {...rest} />;
}