UNPKG

styled-icons

Version:

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

14 lines (13 loc) 998 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var ZoomIn = 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: "M13 11h-2V9a.5.5 0 00-1 0v2H8a.5.5 0 000 1h2v2a.5.5 0 001 0v-2h2a.5.5 0 000-1zm5.432 3.97l-.536-.537-.749-.75c.227-.688.354-1.42.354-2.183 0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7c.763 0 1.496-.127 2.184-.354l.75.749 1.512 1.51.061.061.064.055a3.28 3.28 0 002.104.784 3.134 3.134 0 003.13-3.131c0-.84-.328-1.628-.924-2.218l-.95-.986zM5.5 11.5c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z", key: "k0" }))); }); ZoomIn.displayName = 'ZoomIn'; export var ZoomInDimensions = { height: 24, width: 24 };