UNPKG

styled-icons

Version:

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

16 lines (15 loc) 1 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Layer = 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: "M21.484 7.125l-9.022-5a1.003 1.003 0 00-.968 0l-8.978 4.96a1 1 0 00-.003 1.748l9.022 5.04a.995.995 0 00.973.001l8.978-5a1 1 0 00-.002-1.749z", key: "k0" }), React.createElement("path", { d: "M12 15.856l-8.515-4.73-.971 1.748 9 5a1 1 0 00.971 0l9-5-.971-1.748L12 15.856z", key: "k1" }), React.createElement("path", { d: "M12 19.856l-8.515-4.73-.971 1.748 9 5a1 1 0 00.971 0l9-5-.971-1.748L12 19.856z", key: "k2" }))); }); Layer.displayName = 'Layer'; export var LayerDimensions = { height: 24, width: 24 };