@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.91 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 = ["M14.25 10.25a.75.75 0 0 1 .6.3l.002.003.003.005.01.013a3 3 0 0 1 .133.196c.082.127.19.307.298.523.209.417.454 1.04.454 1.71 0 .454-.184.846-.495 1.113a1.54 1.54 0 0 1-1.005.363c-.34 0-.71-.109-1.005-.363A1.44 1.44 0 0 1 12.75 13c0-.67.245-1.293.454-1.71a6 6 0 0 1 .43-.719l.01-.013.004-.005.001-.001.001-.002a.75.75 0 0 1 .6-.3M6.776.918A.75.75 0 0 1 7.78.97l6.5 6.5a.75.75 0 0 1-.234 1.22l-1.62.693-4.439 4.44a1.75 1.75 0 0 1-2.474 0L.927 9.237a1.75 1.75 0 0 1 0-2.474L3.438 4.25l-1.72-1.72A.75.75 0 0 1 2.78 1.47L4.5 3.19 6.719.97zM5.56 4.25l1.159 1.158a2 2 0 1 1-1.06 1.06L4.498 5.31 1.987 7.823a.25.25 0 0 0 0 .354l4.586 4.586a.25.25 0 0 0 .354 0L11.47 8.22l.11-.091a1 1 0 0 1 .124-.069l.732-.314L7.25 2.56zm1.94 2.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1"];
export const PaintBucketIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "paint-bucket", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
PaintBucketIcon.displayName = "Blueprint6.Icon.Next.PaintBucketIcon";
export default PaintBucketIcon;
//# sourceMappingURL=paint-bucket.js.map