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.04 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.Svg = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }), React.createElement("path", { d: "M14.5 6.5c-.444 0-.843.193-1.118.5h-2.968l2.099-2.099a1.5 1.5 0 10-1.414-1.414L9 5.586V2.618a1.5 1.5 0 10-2 0v2.968L4.901 3.487a1.5 1.5 0 10-1.414 1.414L5.586 7H2.618a1.5 1.5 0 100 2h2.968l-2.099 2.099a1.5 1.5 0 101.414 1.414L7 10.414v2.968a1.5 1.5 0 102 0v-2.968l2.099 2.099a1.5 1.5 0 101.414-1.414L10.414 9h2.968A1.5 1.5 0 1014.5 6.5z", key: "k0" }))); }); exports.Svg.displayName = 'Svg'; exports.SvgDimensions = { height: 16, width: 16 };