@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
19 lines • 772 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: "M19.184 7.621l.195.19c.17.164.158.426-.02.599l-8.525 8.25c-.265.257-.7.245-.974-.019l-3.716-3.596a.437.437 0 0 1-.047-.598l.347-.425a.463.463 0 0 1 .597-.095l3.006 1.944c.158.103.431.09.58-.027l7.942-6.246a.486.486 0 0 1 .615.023z",
fill: "#fff",
fillRule: "nonzero"
}));
}
});
export default IconCheckedFill;
//# sourceMappingURL=checked.fill.js.map