UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 1.01 kB
const React = require("react"); function AirpodsIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M2 7.625a4.125 4.125 0 004.125 4.125c.306 0 .459 0 .538.027a.445.445 0 01.31.31c.027.08.027.203.027.452v6.336a1.625 1.625 0 103.25 0V7.625a4.125 4.125 0 00-8.25 0zM22 7.625a4.125 4.125 0 01-4.125 4.125c-.306 0-.459 0-.538.027a.445.445 0 00-.31.31c-.027.08-.027.203-.027.452v6.336a1.625 1.625 0 11-3.25 0V7.625a4.125 4.125 0 118.25 0z" })); } const ForwardRef = React.forwardRef(AirpodsIcon); module.exports = ForwardRef;