UNPKG

styled-icons

Version:

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

18 lines (17 loc) 941 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var TextFields = 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: "M24 24H0V0h24v24z" })), React.createElement("clipPath", { key: "k1" }, React.createElement("use", { overflow: "visible", xlinkHref: "#a" })), React.createElement("path", { d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z", clipPath: "url(#b)", key: "k2" }))); }); TextFields.displayName = 'TextFields'; export var TextFieldsDimensions = { height: 24, width: 24 };