@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.41 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 = ["M5.25 1.75a.75.75 0 0 1 0 1.5c-.419 0-.662.072-.803.147a.6.6 0 0 0-.272.29C4.015 4.015 4 4.507 4 5.25c0 .632.016 1.515-.325 2.218A2.2 2.2 0 0 1 3.313 8q.224.243.362.532c.34.703.325 1.586.325 2.218 0 .743.016 1.235.175 1.563.063.13.144.221.272.29.14.075.384.147.803.147a.75.75 0 0 1 0 1.5c-.581 0-1.088-.1-1.51-.325a2.1 2.1 0 0 1-.915-.957c-.34-.703-.325-1.586-.325-2.218 0-.743-.016-1.235-.175-1.563a.6.6 0 0 0-.272-.29c-.14-.075-.384-.147-.803-.147a.75.75 0 0 1 0-1.5c.419 0 .662-.072.803-.147a.6.6 0 0 0 .272-.29c.16-.328.175-.82.175-1.563 0-.632-.016-1.515.325-2.218.187-.385.48-.724.915-.957.422-.225.929-.325 1.51-.325m5.5 0c.581 0 1.088.1 1.51.325.434.233.728.572.915.957.34.703.325 1.586.325 2.218 0 .743.016 1.235.175 1.563.063.13.144.221.272.29.14.075.384.147.803.147a.75.75 0 0 1 0 1.5c-.419 0-.662.072-.803.147a.6.6 0 0 0-.272.29c-.16.328-.175.82-.175 1.563 0 .632.016 1.515-.325 2.218-.187.385-.48.724-.915.957-.422.225-.929.325-1.51.325a.75.75 0 0 1 0-1.5c.419 0 .662-.072.803-.148a.6.6 0 0 0 .272-.289c.16-.328.175-.82.175-1.563 0-.632-.016-1.515.325-2.218.093-.19.211-.371.36-.532a2.2 2.2 0 0 1-.36-.532C11.985 6.765 12 5.882 12 5.25c0-.743-.016-1.235-.175-1.563a.6.6 0 0 0-.272-.29c-.14-.075-.384-.147-.803-.147a.75.75 0 0 1 0-1.5"];
export const CurlyBracesIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "curly-braces", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CurlyBracesIcon.displayName = "Blueprint6.Icon.Next.CurlyBracesIcon";
export default CurlyBracesIcon;
//# sourceMappingURL=curly-braces.js.map