@vuduc0801/react-native-phosphor-icons
Version:
Since [Phosphor](https://phosphoricons.com/) does not support React Native, we have to convert all the SVGs to React Native SVGs.
34 lines (33 loc) • 734 B
JavaScript
;
/* Generated code. Do not edit.*/
import React from 'react';
import regular from '../regular/Mosque';
import fill from '../fill/Mosque';
import bold from '../bold/Mosque';
import { jsx as _jsx } from "react/jsx-runtime";
const weightMap = {
fill,
regular,
bold
};
function Mosque(props) {
const {
color = '#000',
size = 24,
weight = 'regular',
mirrored = false,
style
} = props;
const IconComponent = weightMap[weight];
return /*#__PURE__*/_jsx(IconComponent, {
color: color,
size: size,
style: [style, mirrored ? {
transform: [{
scaleX: -1
}]
} : undefined]
});
}
export default /*#__PURE__*/React.memo(Mosque);
//# sourceMappingURL=Mosque.js.map