UNPKG

@nomercyicons/react

Version:
26 lines 972 B
const React = require("react"); function WhereToVoteRoundedIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", 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: "none", d: "M0 0h24v24H0z" }), /*#__PURE__*/React.createElement("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm-1.77 10.66l-1.41-1.41a.996.996 0 111.41-1.41l.71.71 2.83-2.83a.996.996 0 111.41 1.41l-3.54 3.54c-.38.38-1.02.38-1.41-.01z" })); } const ForwardRef = React.forwardRef(WhereToVoteRoundedIcon); module.exports = ForwardRef;