@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.02 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.003.003.003.005.01.013a3 3 0 0 1 .132.196c.082.126.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.246-1.293.454-1.71a6 6 0 0 1 .431-.719l.01-.013.003-.005.002-.001v-.002a.75.75 0 0 1 .6-.3M6.777.918A.75.75 0 0 1 7.78.97l6.5 6.5a.75.75 0 0 1-.234 1.22l-1.619.693-4.44 4.44a1.75 1.75 0 0 1-2.474 0L.927 9.237a1.75 1.75 0 0 1 0-2.474l1.805-1.807L4.54 6.765q-.04.237-.04.485a3 3 0 1 0 2.515-2.96L5.206 2.481 6.72.97zm-4.385.346a.75.75 0 0 1 .388.206l3.939 3.938a2 2 0 0 1 1.376-.068 2.005 2.005 0 0 1 1.364 2.313 2 2 0 0 1-.84 1.255 1.99 1.99 0 0 1-1.897.185A2.01 2.01 0 0 1 5.5 7.25a2 2 0 0 1 .158-.781L1.72 2.53a1 1 0 0 1-.096-.117.75.75 0 0 1 .769-1.15M7.5 6.75a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1"];
export const PaintBucketFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "paint-bucket-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
PaintBucketFilledIcon.displayName = "Blueprint6.Icon.Next.PaintBucketFilledIcon";
export default PaintBucketFilledIcon;
//# sourceMappingURL=paint-bucket-filled.js.map