styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 1.01 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var EyeMinus = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M10 2h6v2h-6V2z", key: "k0" }),
React.createElement("path", { d: "M13.599 5H9V3.056A8.923 8.923 0 008 3C4.511 3 1.486 5.032 0 8c1.486 2.968 4.511 5 8 5s6.514-2.032 8-5a9.173 9.173 0 00-2.401-3zM6.5 5a1.5 1.5 0 11-.001 3.001A1.5 1.5 0 016.5 5zm5.444 5.348a7.326 7.326 0 01-7.889 0A7.626 7.626 0 011.72 8a7.594 7.594 0 012.52-2.462 4 4 0 107.518 0A7.615 7.615 0 0114.278 8a7.594 7.594 0 01-2.335 2.348z", key: "k1" })));
});
EyeMinus.displayName = 'EyeMinus';
export var EyeMinusDimensions = { height: 16, width: 16 };