UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

85 lines (83 loc) 4.09 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function CowboyHatFaceIcon({ title, titleId, size, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 72 72", fill: "currentColor", "aria-hidden": "true", ref: svgRef, width: size ? typeof size === "string" ? sizeMap[size] : size : "16px", "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("circle", { cx: 36, cy: 38, r: 24, fill: "#FCEA2B" }), /*#__PURE__*/React.createElement("path", { fill: "#6A462F", d: "M36 23.315c9.267-.129 15.335-2.457 15.335-2.457a23.051 23.051 0 015.975 8.472s10.595-8.361 2.295-15.105c0 0-4.006-3.86-10.036 1.646 0 0-3.886 3.665-13.569 3.706-9.683-.04-13.57-3.706-13.57-3.706-6.028-5.505-10.035-1.646-10.035-1.646-8.3 6.743 2.295 15.105 2.295 15.105a23.05 23.05 0 015.976-8.472S26.733 23.187 36 23.315z" }), /*#__PURE__*/React.createElement("path", { fill: "#6A462F", d: "M36 19.577c6.052-.025 9.767-1.428 11.757-2.505 0 0-1.634-.57-1.39-2.782.072-.657.353-1.627.71-2.549.639-1.65.194-2.968-4.114-5.134 0 0-2.082-1.041-2.82-1.274-1.083-.343-2.934-.62-4.143.818-1.209-1.439-3.06-1.16-4.143-.818-.738.233-2.82 1.274-2.82 1.274-4.308 2.166-4.753 3.483-4.114 5.134.357.922.638 1.892.71 2.55.245 2.21-1.39 2.781-1.39 2.781 1.99 1.077 5.705 2.48 11.757 2.505z" }), /*#__PURE__*/React.createElement("path", { fill: "#FFF", d: "M50.595 43.64a11.557 11.557 0 01-.87 4.49c-12.49 3.03-25.43.34-27.49-.13a11.435 11.435 0 01-.83-4.36h.11s14.8 3.59 28.89.07l.19-.07z" }), /*#__PURE__*/React.createElement("path", { fill: "#EA5A47", d: "M49.725 48.13c-1.79 4.27-6.35 7.23-13.69 7.23-7.41 0-12.03-3.03-13.8-7.36 2.06.47 15 3.16 27.49.13z" }), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("ellipse", { cx: 28.068, cy: 32.818, rx: 3, ry: 5.404 }), /*#__PURE__*/React.createElement("ellipse", { cx: 43.932, cy: 32.822, rx: 3, ry: 5.404 }), /*#__PURE__*/React.createElement("path", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M58.438 32.925C58.806 34.558 59 36.256 59 38c0 12.703-10.297 23-23 23S13 50.703 13 38c0-1.744.194-3.442.562-5.075M36 23.315c9.267-.129 15.335-2.457 15.335-2.457a23.051 23.051 0 015.975 8.472s10.595-8.361 2.295-15.105c0 0-4.006-3.86-10.036 1.646 0 0-3.886 3.665-13.569 3.706-9.683-.04-13.57-3.706-13.57-3.706-6.028-5.505-10.035-1.646-10.035-1.646-8.3 6.743 2.295 15.105 2.295 15.105a23.05 23.05 0 015.976-8.472S26.733 23.187 36 23.315z" }), /*#__PURE__*/React.createElement("path", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M36 19.577c6.052-.025 9.767-1.428 11.757-2.505 0 0-1.634-.57-1.39-2.782.072-.657.353-1.627.71-2.549.639-1.65.194-2.968-4.114-5.134 0 0-2.082-1.041-2.82-1.274-1.083-.343-2.934-.62-4.143.818-1.209-1.439-3.06-1.16-4.143-.818-.738.233-2.82 1.274-2.82 1.274-4.308 2.166-4.753 3.483-4.114 5.134.357.922.638 1.892.71 2.55.245 2.21-1.39 2.781-1.39 2.781 1.99 1.077 5.705 2.48 11.757 2.505h0z" }), /*#__PURE__*/React.createElement("path", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M50.595 43.64a11.557 11.557 0 01-.87 4.49c-12.49 3.03-25.43.34-27.49-.13a11.435 11.435 0 01-.83-4.36h.11s14.8 3.59 28.89.07l.19-.07z" }), /*#__PURE__*/React.createElement("path", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M49.725 48.13c-1.79 4.27-6.35 7.23-13.69 7.23-7.41 0-12.03-3.03-13.8-7.36 2.06.47 15 3.16 27.49.13z" }))); } const ForwardRef = React.forwardRef(CowboyHatFaceIcon); module.exports = ForwardRef;