UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

15 lines (14 loc) 965 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Headphones = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __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" }))); }); Headphones.displayName = 'Headphones'; export var HeadphonesDimensions = { height: 16, width: 16 };