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