@scaleflex/icons
Version:
SVG icons as React components
25 lines • 2.2 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Emoji = function Emoji(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Emoji",
ref: ref,
width: size,
height: size,
viewBox: "0 0 52 52",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M25.0001 50C18.3224 50 12.0444 47.3995 7.32239 42.6777C2.60061 37.9558 0.00012207 31.6777 0.00012207 25C0.00012207 18.3223 2.60061 12.0442 7.32239 7.32227C12.0444 2.60049 18.3224 0 25.0001 0C31.6779 0 37.9559 2.60049 42.6779 7.32227C47.3996 12.0442 50.0001 18.3223 50.0001 25C50.0001 31.6777 47.3996 37.9558 42.6779 42.6777C37.9559 47.3995 31.6779 50 25.0001 50ZM25.0001 3.90625C13.369 3.90625 3.90637 13.3688 3.90637 25C3.90637 36.6312 13.369 46.0938 25.0001 46.0938C36.6313 46.0938 46.0939 36.6312 46.0939 25C46.0939 13.3688 36.6313 3.90625 25.0001 3.90625ZM34.1541 29.3152C33.2441 28.736 32.0368 29.0043 31.4578 29.9145C31.4337 29.9522 29.0031 33.6974 24.9025 33.6974C20.8019 33.6974 18.3712 29.9522 18.3471 29.9145C17.768 29.0044 16.5609 28.7361 15.6508 29.3152C14.7407 29.8943 14.4725 31.1016 15.0516 32.0115C15.1969 32.2398 18.6817 37.6036 24.9025 37.6036C31.1233 37.6036 34.608 32.2399 34.7533 32.0115C35.3324 31.1015 35.0642 29.8943 34.1541 29.3152ZM16.4064 16.1133C17.7547 16.1133 18.8478 17.2063 18.8478 18.5547C18.8478 19.903 17.7547 20.9961 16.4064 20.9961C15.058 20.9961 13.965 19.903 13.965 18.5547C13.965 17.2063 15.058 16.1133 16.4064 16.1133ZM31.0548 18.5547C31.0548 19.903 32.1479 20.9961 33.4962 20.9961C34.8446 20.9961 35.9376 19.903 35.9376 18.5547C35.9376 17.2063 34.8446 16.1133 33.4962 16.1133C32.1479 16.1133 31.0548 17.2063 31.0548 18.5547Z",
fill: color
}));
};
export default Emoji;