react-bytesize-icons
Version:
Bytesize Icons as React Components.
34 lines (29 loc) • 1.14 kB
JavaScript
"use strict";
exports.__esModule = true;
exports["default"] = void 0;
var _react = _interopRequireDefault(require("react"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
var Twitter = function Twitter(_ref) {
var _ref$id = _ref.id,
id = _ref$id === void 0 ? "i-twitter" : _ref$id,
className = _ref.className,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 32 : _ref$width,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 32 : _ref$height,
_ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentcolor' : _ref$color;
return _react["default"].createElement("svg", {
className: className,
id: id,
viewBox: "0 0 64 64",
width: width,
height: height
}, _react["default"].createElement("path", {
strokeWidth: "0",
fill: color,
d: "M60 16 L54 17 L58 12 L51 14 C42 4 28 15 32 24 C16 24 8 12 8 12 C8 12 2 21 12 28 L6 26 C6 32 10 36 17 38 L10 38 C14 46 21 46 21 46 C21 46 15 51 4 51 C37 67 57 37 54 21 Z"
}));
};
var _default = Twitter;
exports["default"] = _default;