@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
25 lines • 1.02 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { Svg, Circle, Path } from 'react-native-svg';
import { genColoursIcon } from "./gen";
var TimeColours = genColoursIcon(function (_ref, props) {
var size = _ref.size,
color = _ref.color,
strokeWidth = _ref.strokeWidth;
return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
viewBox: "0 0 10 10",
fill: "none",
width: size,
height: size
}), /*#__PURE__*/React.createElement(Circle, {
r: "5",
cx: "5",
cy: "5",
fill: "#59FFC5"
}), /*#__PURE__*/React.createElement(Path, {
d: "M4.5 5.5H8v-1H5.5v-3h-1v4Z",
fillRule: "evenodd",
fill: "#616863"
}));
});
export default TimeColours;