UNPKG

styled-icons

Version:

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

18 lines (17 loc) 947 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var LineWeight = 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("defs", { key: "k0" }, React.createElement("path", { d: "M0 0h24v24H0z" })), React.createElement("clipPath", { key: "k1" }, React.createElement("use", { overflow: "visible", xlinkHref: "#a" })), React.createElement("path", { d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z", clipPath: "url(#b)", key: "k2" }))); }); LineWeight.displayName = 'LineWeight'; export var LineWeightDimensions = { height: 24, width: 24 };