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