UNPKG

@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) 740 B
"use strict"; /* Generated code. Do not edit.*/ import React from 'react'; import regular from '../regular/Network'; import fill from '../fill/Network'; import bold from '../bold/Network'; import { jsx as _jsx } from "react/jsx-runtime"; const weightMap = { fill, regular, bold }; function Network(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(Network); //# sourceMappingURL=Network.js.map