UNPKG

@nomercyicons/react

Version:
24 lines 1.39 kB
const React = require("react"); function PocketIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 43", strokeWidth: 1.5, stroke: "none", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M23.985 0C30.5 0 37.012 0 43.525.003c2.019.001 3.754 1.303 4.256 3.195.08.299.13.615.13.924.003 5.089.028 10.178-.018 15.267-.047 5.2-1.62 9.907-4.82 14.018-3.562 4.574-8.155 7.587-13.816 8.895C16.26 45.305 3.842 36.915.777 25.173c-.409-1.565-.687-3.153-.7-4.77C.03 14.99-.003 9.576 0 4.163.001 1.882 2.034.002 4.408.002 10.933-.003 17.459 0 23.985 0zm.008 21.88c-.12-.113-.213-.196-.302-.282-2.9-2.786-5.798-5.576-8.702-8.357a3.256 3.256 0 00-4.64.09 3.26 3.26 0 00.082 4.62c3.764 3.636 7.538 7.261 11.319 10.88 1.26 1.205 3.2 1.192 4.477.002.512-.476 1.011-.966 1.515-1.451 3.233-3.107 6.464-6.216 9.7-9.32.778-.745 1.185-1.646 1.083-2.719-.13-1.364-.85-2.345-2.14-2.816-1.288-.468-2.458-.185-3.451.763-1.626 1.553-3.244 3.114-4.865 4.672l-4.076 3.918z" })); } const ForwardRef = React.forwardRef(PocketIcon); module.exports = ForwardRef;