@nomercyicons/react
Version:
24 lines • 1.89 kB
JavaScript
const React = require("react");
function AndroidColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 42 48",
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: "#95CF00",
fillRule: "evenodd",
d: "M26.727 9.6c-.792 0-1.432-.623-1.432-1.393s.64-1.392 1.432-1.392c.792 0 1.432.621 1.432 1.392 0 .77-.64 1.394-1.432 1.394zm-11.454 0c-.792 0-1.432-.623-1.432-1.393s.64-1.392 1.432-1.392c.792 0 1.432.621 1.432 1.392 0 .77-.64 1.394-1.432 1.394zm12.3-5.581c4.049 1.837 6.79 5.317 6.79 9.299H7.637c0-3.982 2.74-7.462 6.791-9.3l-.536-.784-.534-.773L12.17.722a.459.459 0 01.134-.643.489.489 0 01.664.13l1.276 1.862.536.782.542.796A16.08 16.08 0 0121 2.633c2.03 0 3.952.364 5.678 1.016l.545-.796L29.038.209a.478.478 0 01.658-.13c.22.14.282.429.134.643l-1.19 1.739-.533.773-.533.785zM7.844 15.175h26.52v20.438c0 1.623-1.352 2.944-3.022 2.944h-2.184c.075.245.119.502.119.773v5.884c0 1.539-1.285 2.786-2.868 2.786-1.58 0-2.862-1.247-2.862-2.786V39.33c0-.27.04-.528.113-.773h-5.318c.072.245.116.502.116.773v5.884c0 1.539-1.285 2.786-2.865 2.786-1.58 0-2.865-1.247-2.865-2.786V39.33c0-.27.04-.528.116-.773h-2.18c-1.67 0-3.025-1.32-3.025-2.944V15.175h.206zm-4.978 0c1.58 0 2.862 1.247 2.862 2.785v11.924c0 1.538-1.282 2.786-2.862 2.786C1.282 32.67 0 31.422 0 29.884V17.96c0-1.538 1.282-2.785 2.865-2.785zm36.273 0c1.58 0 2.862 1.247 2.862 2.785v11.924c0 1.538-1.282 2.786-2.862 2.786-1.583 0-2.865-1.248-2.865-2.786V17.96c0-1.538 1.282-2.785 2.865-2.785z"
}));
}
const ForwardRef = React.forwardRef(AndroidColorIcon);
module.exports = ForwardRef;