styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.09 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Headphones = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M4.5 9h-1v7h1c.275 0 .5-.225.5-.5v-6c0-.275-.225-.5-.5-.5zM11.5 9c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5h1V9h-1z", key: "k0" }),
React.createElement("path", { d: "M16 8A8 8 0 10.479 10.732 3.5 3.5 0 003 15.964V9.036a3.478 3.478 0 00-1.371.506 6.5 6.5 0 1112.743 0A3.484 3.484 0 0013 9.035v6.929a3.5 3.5 0 002.521-5.232C15.831 9.879 16 8.959 16 8z", key: "k1" })));
});
exports.Headphones.displayName = 'Headphones';
exports.HeadphonesDimensions = { height: 16, width: 16 };
;