@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
25 lines • 620 B
JavaScript
import React from 'react';
import { G, Line } from 'react-native-svg';
import { genIcon } from './helper/gen';
const IconPlusOutline = genIcon({
render: color => {
return /*#__PURE__*/React.createElement(G, {
stroke: color,
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round"
}, /*#__PURE__*/React.createElement(Line, {
x1: "12",
y1: "4",
x2: "12",
y2: "20"
}), /*#__PURE__*/React.createElement(Line, {
x1: "4",
y1: "12",
x2: "20",
y2: "12"
}));
}
});
export default IconPlusOutline;
//# sourceMappingURL=plus.js.map