UNPKG

@blueprintjs/icons

Version:

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

24 lines 4.12 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 = ["M13.75 8c0-.01-.002-.057-.066-.161a2.7 2.7 0 0 0-.326-.397c-.133-.142-.334-.343-.494-.529a2.8 2.8 0 0 1-.474-.731V6.18a2.7 2.7 0 0 1-.174-.845c-.015-.237-.015-.526-.02-.715-.015-.49-.078-.636-.13-.687-.05-.052-.196-.115-.687-.13-.189-.005-.478-.004-.715-.02a2.7 2.7 0 0 1-.845-.174h-.002a2.8 2.8 0 0 1-.728-.474c-.186-.16-.388-.361-.53-.494a2.7 2.7 0 0 0-.397-.325C8.058 2.253 8.011 2.25 8 2.25c-.01 0-.057.002-.161.066a2.7 2.7 0 0 0-.397.326c-.142.133-.343.333-.529.494-.193.166-.44.353-.731.474H6.18c-.29.12-.596.158-.845.174-.237.016-.526.015-.715.02-.49.015-.636.078-.687.13-.052.05-.115.196-.13.687-.005.189-.004.478-.02.715-.016.25-.054.554-.174.845v.002a2.8 2.8 0 0 1-.474.728c-.16.186-.361.388-.494.53a2.7 2.7 0 0 0-.325.397c-.064.104-.067.151-.067.162 0 .01.003.058.067.162.068.11.172.234.325.397.133.142.334.344.494.53.124.145.26.319.372.52l.102.208v.002c.12.29.158.596.174.845.016.237.015.526.02.715.015.49.078.636.13.687.05.052.196.115.687.13.189.005.478.005.715.02.25.016.554.054.845.174h.002c.29.12.535.308.728.474.186.16.388.361.53.494.163.153.288.257.397.325.104.064.151.067.162.067.01 0 .058-.003.162-.067.11-.068.234-.172.397-.325.142-.133.344-.334.53-.494a2.8 2.8 0 0 1 .728-.474h.002c.29-.12.596-.158.845-.174.237-.015.526-.015.715-.02.49-.015.636-.078.687-.13.052-.05.115-.196.13-.687.005-.189.005-.478.02-.715.016-.25.054-.554.174-.845v-.002c.12-.29.308-.535.474-.728.16-.186.361-.388.494-.53.153-.163.257-.288.325-.397.064-.104.067-.151.067-.162m-3.53-2.03a.75.75 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-1.06 0L5.22 8.53a.75.75 0 0 1 1.06-1.06L7.5 8.69zM15.25 8c0 .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 .75c.38 0 .7.136.95.29.244.151.46.344.635.508.195.183.328.318.483.452.149.128.252.194.326.225h-.001c.063.026.174.05.368.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"]; export const BadgeCheckIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "badge-check", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); BadgeCheckIcon.displayName = "Blueprint6.Icon.Next.BadgeCheckIcon"; export default BadgeCheckIcon; //# sourceMappingURL=badge-check.js.map