UNPKG

@fruits-chain/react-native-xiaoshu

Version:
32 lines • 809 B
import React from 'react'; import { G, Circle, Line } from 'react-native-svg'; import { genIcon } from './helper/gen'; const IconCrossCircleOutline = genIcon({ render: color => { return /*#__PURE__*/React.createElement(G, { fill: "none", stroke: color, strokeWidth: 1.4, strokeLinecap: "round", strokeLinejoin: "round" }, /*#__PURE__*/React.createElement(Circle, { cx: "12", cy: "12", r: 11, fill: "none", strokeWidth: 1.4 }), /*#__PURE__*/React.createElement(Line, { x1: "8", y1: "8", x2: "16", y2: "16" }), /*#__PURE__*/React.createElement(Line, { x1: "16", y1: "8", x2: "8", y2: "16" })); } }); export default IconCrossCircleOutline; //# sourceMappingURL=cross-circle.js.map