@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
21 lines • 553 B
JavaScript
import React from 'react';
import { Circle } from 'react-native-svg';
import { hex2rgba, rgb2hex } from '../helpers';
import { genIcon } from './helper/gen';
const IconCircleOutline = genIcon({
render: (color, _ref) => {
let {
disabled
} = _ref;
return /*#__PURE__*/React.createElement(Circle, {
cx: "12",
cy: "12",
r: 11,
fill: disabled ? hex2rgba(rgb2hex(color), 0.05) : 'none',
stroke: color,
strokeWidth: 1.4
});
}
});
export default IconCircleOutline;
//# sourceMappingURL=circle.js.map