UNPKG

@fruits-chain/icons-react-native

Version:
24 lines • 1.07 kB
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 { genFillIcon } from "./gen"; var PlayCircleFill = genFillIcon(function (_ref, props) { var size = _ref.size, color = _ref.color, strokeWidth = _ref.strokeWidth; return /*#__PURE__*/React.createElement(Svg, _extends({}, props, { viewBox: "0 0 24 24", fill: "none", width: size, height: size }), /*#__PURE__*/React.createElement(Circle, { r: "10", cx: "12", cy: "12", fill: color }), /*#__PURE__*/React.createElement(Path, { d: "M10.65 15.48a.4.4 0 0 1-.65-.312V8.832a.4.4 0 0 1 .65-.312l3.96 3.168a.4.4 0 0 1 0 .624l-3.96 3.168Z", fill: "#FFF" })); }); export default PlayCircleFill;