UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

24 lines 2.07 kB
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 = ["M8 2.75q.406 0 .789.036a1.75 1.75 0 0 0 .224 2.201l1.75 1.75a1.75 1.75 0 0 0 2.474 0l1.08-1.08c.402.457.708.893.927 1.24a8 8 0 0 1 .408.727l.023.048.006.016.002.004.001.002c-.003.002-.051.025-.684.306.645.287.683.304.685.306l-.002.002-.002.005-.006.015-.023.048-.084.165c-.072.139-.18.332-.324.562a9.7 9.7 0 0 1-1.339 1.677C12.68 12.006 10.75 13.25 8 13.25s-4.68-1.244-5.905-2.47a9.7 9.7 0 0 1-1.34-1.677 8 8 0 0 1-.407-.727l-.023-.048-.007-.015-.002-.005v-.002S.318 8.303 1 8l-.686-.306.002-.002.002-.004.007-.016.023-.048q.029-.06.083-.165c.073-.139.18-.332.325-.561A9.7 9.7 0 0 1 2.095 5.22C3.32 3.994 5.25 2.75 8 2.75M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5M1 8l-.686.305a.75.75 0 0 1 0-.61zm14.685-.305a.75.75 0 0 1 0 .61L15 8zM15.25 1.5a.747.747 0 0 1 .736.893.75.75 0 0 1-.206.387l-3.25 3.25a.75.75 0 0 1-1.06 0L9.72 4.28a.75.75 0 0 1 1.056-1.063L12 4.44l2.72-2.72a.75.75 0 0 1 .53-.22"]; export const EyeCheckFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "eye-check-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); EyeCheckFilledIcon.displayName = "Blueprint6.Icon.Next.EyeCheckFilledIcon"; export default EyeCheckFilledIcon; //# sourceMappingURL=eye-check-filled.js.map