@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
17 lines • 456 B
JavaScript
import React from 'react';
import { Path } from 'react-native-svg';
import { genIcon } from './helper/gen';
const IconSuccessOutline = genIcon({
render: color => {
return /*#__PURE__*/React.createElement(Path, {
d: "M6,12 10,16 18,7",
fill: "none",
stroke: color,
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round"
});
}
});
export default IconSuccessOutline;
//# sourceMappingURL=success.js.map