UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

24 lines 2.04 kB
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 = ["M12.75 6.249A3.25 3.25 0 0 1 16 9.499c0 .52-.22 1.118-.459 1.638a16 16 0 0 1-.902 1.648 30 30 0 0 1-1.255 1.87l-.023.03-.007.008v.002l-.002.001a.75.75 0 0 1-1.148.069l-.056-.069-.002-.003-.007-.008-.023-.03-.082-.114-.29-.412a30 30 0 0 1-.883-1.344c-.32-.52-.65-1.1-.902-1.648-.239-.52-.459-1.118-.459-1.638a3.25 3.25 0 0 1 3.25-3.25m-6-5.5a6.25 6.25 0 0 1 6 4.501 4.2 4.2 0 0 0-1.487.268 4.75 4.75 0 1 0-2.355 5.712q.072.174.143.326c.156.34.338.684.525 1.017A6.25 6.25 0 1 1 6.75.75m6 7A1.75 1.75 0 0 0 11 9.499c0 .17.092.511.322 1.012.217.471.512.993.817 1.488.21.343.425.665.611.941.187-.276.4-.598.611-.941.305-.495.6-1.017.817-1.488.23-.5.322-.842.322-1.012a1.75 1.75 0 0 0-1.75-1.75m0 .751a1 1 0 1 1 0 2 1 1 0 0 1 0-2m-6-4.656a.75.75 0 0 1 .75.75v2.095l1.155 1.156a.75.75 0 0 1-1.06 1.06L6.22 7.53A.75.75 0 0 1 6 7V4.594a.75.75 0 0 1 .75-.75"]; export const ClockLocationPinIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "clock-location-pin", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); ClockLocationPinIcon.displayName = "Blueprint6.Icon.Next.ClockLocationPinIcon"; export default ClockLocationPinIcon; //# sourceMappingURL=clock-location-pin.js.map