UNPKG

styled-icons

Version:

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

14 lines (13 loc) 872 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var MediaFastForward = 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: "M15.053 6.912A1.797 1.797 0 0012 8.201v9a1.8 1.8 0 003.053 1.287C17.434 16.174 21 12.701 21 12.701s-3.566-3.474-5.947-5.789zm-9 0A1.797 1.797 0 003 8.201v9a1.8 1.8 0 003.053 1.287C8.434 16.174 12 12.701 12 12.701S8.434 9.227 6.053 6.912z", key: "k0" }))); }); MediaFastForward.displayName = 'MediaFastForward'; export var MediaFastForwardDimensions = { height: 24, width: 24 };