@easy-eva-icons/react
Version:
Easy to use eva icons.
24 lines (23 loc) • 1.3 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
function PlayCircle(props) {
return React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: "1em", height: "1em" }, props),
React.createElement("g", { "data-name": "Layer 2" },
React.createElement("g", { "data-name": "play-circle" },
React.createElement("rect", { width: 24, height: 24, opacity: 0 }),
React.createElement("polygon", { points: "11.5 14.6 14.31 12 11.5 9.4 11.5 14.6" }),
React.createElement("path", { d: "M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4 11.18l-3.64 3.37a1.74 1.74 0 0 1-1.16.45 1.68 1.68 0 0 1-.69-.15 1.6 1.6 0 0 1-1-1.48V8.63a1.6 1.6 0 0 1 1-1.48 1.7 1.7 0 0 1 1.85.3L16 10.82a1.6 1.6 0 0 1 0 2.36z" }))));
}
exports.default = PlayCircle;