@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
28 lines • 2.16 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2024 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 { IconSize } from "../../iconTypes";
import { SVGIconContainer } from "../../svgIconContainer";
export const FunctionMinimal = React.forwardRef((props, ref) => {
const isLarge = (props.size ?? IconSize.STANDARD) >= IconSize.LARGE;
const pixelGridSize = isLarge ? IconSize.LARGE : IconSize.STANDARD;
const translation = `${-1 * pixelGridSize / 0.05 / 2}`;
const style = { transformOrigin: "center" };
return (_jsx(SVGIconContainer, { iconName: "function-minimal", ref: ref, ...props, children: _jsx("path", { d: isLarge ? "M300 360A20 20 0 1 0 300 320H259.24A30 30 0 0 1 229.7 295.46H229.72L219.92 240H281.5800000000001A20 20 0 0 0 281.5800000000001 200H212.82L194.66 97.58V97.48A70 70 0 0 0 131.86 40.28L125.78 40H80A20 20 0 1 0 80 80H125.76A30 30 0 0 1 155.3 104.62L172.18 200H100A20 20 0 0 0 100 240H179.28L190.34 302.42V302.52A70 70 0 0 0 259.26 360z" : "M250 300A20 20 0 1 0 250 260H213.38A20 20 0 0 1 193.72 243.58L186.7 200H220A20 20 0 1 0 220 160H180.26L165.72 69.66L165.64 69.26A60 60 0 0 0 106.64 20H80A20 20 0 1 0 80 60H106.62A20 20 0 0 1 126.28 76.42L139.74 160H100A20 20 0 0 0 100 200H146.18L154.28 250.34L154.36 250.74A60 60 0 0 0 213.36 299.98z", fillRule: "evenodd", transform: `scale(0.05, -0.05) translate(${translation}, ${translation})`, style: style }) }));
});
FunctionMinimal.displayName = `Blueprint6.Icon.FunctionMinimal`;
export default FunctionMinimal;
//# sourceMappingURL=function-minimal.js.map