react-bytesize-icons
Version:
Bytesize Icons as React Components.
26 lines (24 loc) • 881 B
JavaScript
import React from 'react';
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.createElement("svg", {
className: className,
id: id,
viewBox: "0 0 64 64",
width: width,
height: height
}, React.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"
}));
};
export default Twitter;