UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.87 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.376 1.953c.872-.986 2.36-.877 3.204-.032.734.734.91 1.95.3 2.829h1.62c.69 0 1.25.56 1.25 1.25v2a1.25 1.25 0 0 1-1 1.225V13.5c0 .69-.56 1.25-1.25 1.25h-9c-.69 0-1.25-.56-1.25-1.25V9.225c-.57-.116-1-.62-1-1.225V6c0-.69.56-1.25 1.25-1.25h1.62c-.61-.88-.434-2.095.3-2.83.845-.844 2.332-.953 3.204.033l.11.131q.146.188.266.39c.108-.182.232-.359.376-.52M2.75 7.75h4.5v-1.5h-4.5zm6 0h4.5v-1.5h-4.5zM6.5 2.947c-.22-.248-.697-.288-1.02.034-.32.322-.282.8-.032 1.022.373.33.97.533 1.56.642q.084.014.162.025-.01-.079-.024-.161c-.11-.59-.314-1.188-.645-1.56zm4.02.034c-.323-.322-.8-.282-1.02-.034l-.001.001c-.331.373-.535.971-.645 1.56q-.014.083-.025.162.08-.01.162-.025c.59-.109 1.188-.312 1.56-.642.251-.222.29-.7-.031-1.022"]; export const GiftFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "gift-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); GiftFilledIcon.displayName = "Blueprint6.Icon.Next.GiftFilledIcon"; export default GiftFilledIcon; //# sourceMappingURL=gift-filled.js.map