@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.92 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 = ["M9.41 1.162c.227-.227.965.142 1.649.825.282.283.509.576.664.837a1.125 1.125 0 0 1 1.445 1.468c.275.155.589.393.89.695.684.684 1.053 1.422.826 1.65-.228.228-.967-.142-1.65-.825a4.3 4.3 0 0 1-.697-.893 1.1 1.1 0 0 1-.412.08l-.06-.004c-.24.247-.534.57-.823.94a6.6 6.6 0 0 0-.717 1.104c-.186.377-.275.701-.275.96s.09.584.276.961c.184.371.44.75.716 1.104.288.37.583.691.821.938l.062-.003q.233.001.437.088a4.4 4.4 0 0 1 .672-.85c.684-.683 1.422-1.053 1.65-.825s-.142.966-.825 1.65c-.296.296-.605.53-.875.685a1.121 1.121 0 0 1-1.437 1.435 4.3 4.3 0 0 1-.688.88c-.684.683-1.422 1.052-1.65.825s.142-.966.825-1.65c.29-.289.589-.52.855-.675a1.1 1.1 0 0 1-.089-.438l.003-.06a12 12 0 0 0-.937-.823 6.6 6.6 0 0 0-1.106-.716c-.377-.186-.701-.276-.96-.276s-.583.09-.96.276c-.371.184-.75.439-1.105.716-.37.289-.692.584-.939.822q.003.03.004.061c0 .148-.03.289-.082.418.275.155.589.393.89.695.684.684 1.053 1.422.826 1.65-.228.227-.967-.142-1.65-.825a4.3 4.3 0 0 1-.697-.893 1.125 1.125 0 0 1-1.464-1.441 4.4 4.4 0 0 1-.84-.666C1.3 10.378.931 9.64 1.16 9.412s.966.142 1.65.825c.282.283.509.576.664.837Q3.66 11 3.875 11l.06.003c.239-.247.535-.569.823-.937.277-.355.532-.734.716-1.105.186-.377.276-.702.276-.96 0-.26-.09-.584-.275-.96a6.6 6.6 0 0 0-.717-1.105c-.289-.37-.584-.692-.822-.939Q3.906 5 3.875 5a1.1 1.1 0 0 1-.379-.067 4.4 4.4 0 0 1-.687.879c-.684.683-1.422 1.053-1.65.825s.142-.966.825-1.65c.29-.288.588-.52.854-.675A1.125 1.125 0 0 1 4.31 2.838c.155-.265.386-.563.673-.85.684-.684 1.422-1.054 1.65-.826s-.142.966-.825 1.65c-.296.296-.605.53-.875.685q.064.178.066.378-.001.03-.004.059c.247.238.57.534.94.823.354.277.733.533 1.104.717.377.186.701.275.96.275s.584-.089.961-.275c.371-.184.75-.44 1.104-.717.37-.289.691-.585.938-.823L11 3.874q.002-.21.073-.396a4.4 4.4 0 0 1-.84-.666c-.683-.684-1.052-1.422-.824-1.65"];
export const DroneIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "drone", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
DroneIcon.displayName = "Blueprint6.Icon.Next.DroneIcon";
export default DroneIcon;
//# sourceMappingURL=drone.js.map