styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
18 lines (17 loc) • 944 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var EyeOff = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "none",
"xmlns": "http://www.w3.org/2000/svg",
"stroke": "currentColor",
"strokeLinecap": "round",
"strokeLinejoin": "round",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M17.94 17.94A10.07 10.07 0 0112 20c-7 0-11-8-11-8a18.45 18.45 0 015.06-5.94M9.9 4.24A9.12 9.12 0 0112 4c7 0 11 8 11 8a18.5 18.5 0 01-2.16 3.19m-6.72-1.07a3 3 0 11-4.24-4.24", key: "k0" }),
React.createElement("line", { x1: 1, x2: 23, y1: 1, y2: 23, key: "k1" })));
});
EyeOff.displayName = 'EyeOff';
export var EyeOffDimensions = { height: 24, width: 24 };