@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.7 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 = ["M8 .75c.38 0 .7.136.95.29.244.151.46.344.635.508.195.183.328.318.483.452.149.128.252.194.326.225.063.026.173.05.367.062.206.014.387.01.66.018.435.012 1.182.044 1.706.568s.556 1.271.568 1.705c.008.274.005.455.018.661.012.194.036.305.062.368.031.075.098.179.225.327.134.155.27.287.452.482.164.174.356.39.507.635.154.25.291.57.291.949 0 .38-.136.7-.29.95a4 4 0 0 1-.508.635c-.183.195-.318.328-.452.483a1.3 1.3 0 0 0-.225.326c-.026.063-.05.174-.062.367-.013.206-.01.387-.018.66-.012.435-.044 1.182-.568 1.706s-1.271.556-1.705.568c-.274.008-.455.005-.661.018a1.3 1.3 0 0 0-.368.061 1.4 1.4 0 0 0-.325.226c-.155.134-.288.27-.483.452a4 4 0 0 1-.636.508c-.25.154-.57.29-.949.29-.38 0-.7-.136-.95-.29a4 4 0 0 1-.635-.508c-.195-.183-.328-.318-.483-.452a1.3 1.3 0 0 0-.326-.225 1.3 1.3 0 0 0-.367-.062c-.206-.013-.387-.01-.66-.018-.435-.012-1.182-.044-1.706-.568s-.556-1.271-.568-1.705c-.008-.274-.004-.455-.018-.661a1.3 1.3 0 0 0-.062-.367l-.03-.062A1.7 1.7 0 0 0 2 10.068c-.134-.155-.27-.288-.452-.483a4 4 0 0 1-.508-.636A1.8 1.8 0 0 1 .75 8c0-.38.136-.7.29-.95a4 4 0 0 1 .508-.635c.183-.195.318-.328.452-.483.128-.148.194-.252.225-.326.026-.063.05-.174.062-.367.014-.206.01-.387.018-.66.012-.435.044-1.182.568-1.706s1.271-.556 1.705-.568c.274-.008.455-.005.661-.018.194-.012.305-.036.368-.062A1.3 1.3 0 0 0 5.934 2c.155-.134.287-.27.482-.452.174-.164.39-.356.635-.507A1.8 1.8 0 0 1 8 .75m3.28 5.22a.75.75 0 0 0-1.06 0L7.5 8.69 6.28 7.47a.75.75 0 1 0-1.06 1.06l1.75 1.75a.75.75 0 0 0 1.06 0l3.25-3.25a.75.75 0 0 0 0-1.06"];
export const BadgeCheckFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "badge-check-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
BadgeCheckFilledIcon.displayName = "Blueprint6.Icon.Next.BadgeCheckFilledIcon";
export default BadgeCheckFilledIcon;
//# sourceMappingURL=badge-check-filled.js.map