@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.9 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as React from "react";
import { SvgIconContainerNext } from "../../svgIconContainerNext";
const PATHS = ["M3.034 1.744a.75.75 0 0 1 .52.251l9.999 11.002a.75.75 0 0 1-1.11 1.009l-1.255-1.381A8.2 8.2 0 0 1 8 13.25c-2.25 0-4.29-.854-5.907-2.47C.883 9.57.336 8.356.313 8.305a.76.76 0 0 1 0-.61c.045-.098.98-2.154 3.132-3.588l-1-1.103a.75.75 0 0 1-.13-.828.75.75 0 0 1 .72-.432M4.47 5.231C3.02 6.131 2.174 7.418 1.845 8a8.2 8.2 0 0 0 1.348 1.757C4.533 11.079 6.151 11.75 8 11.75a6.8 6.8 0 0 0 2.1-.324l-.876-.965a2.75 2.75 0 0 1-3.557-3.912zM8 2.75c2.25 0 4.29.854 5.905 2.47 1.209 1.208 1.757 2.423 1.78 2.475a.76.76 0 0 1 .002.61c-.022.05-.562 1.25-1.75 2.447a.75.75 0 0 1-.833.195.75.75 0 0 1-.229-1.25A8.2 8.2 0 0 0 14.155 8a8.2 8.2 0 0 0-1.348-1.758C11.467 4.92 9.849 4.25 8 4.25q-.315 0-.625.026a.75.75 0 0 1-.793-.978.75.75 0 0 1 .668-.517c.246-.021.5-.031.75-.031"];
export const EyeSlashIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "eye-slash", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
EyeSlashIcon.displayName = "Blueprint6.Icon.Next.EyeSlashIcon";
export default EyeSlashIcon;
//# sourceMappingURL=eye-slash.js.map