UNPKG

styled-icons

Version:

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

14 lines (13 loc) 797 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var MediaPlayOutline = 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 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M8.998 7.002l.085.078L14.134 12l-5.096 4.964L9 17l-.002-9.998M9 5a2 2 0 00-2 2v10a2 2 0 002 2c.543 0 1.033-.218 1.393-.568L17 12l-6.604-6.433A2.008 2.008 0 009 5z", key: "k0" }))); }); MediaPlayOutline.displayName = 'MediaPlayOutline'; export var MediaPlayOutlineDimensions = { height: 24, width: 24 };