UNPKG

@blueprintjs/icons

Version:

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

30 lines 2.21 kB
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"; /** Path data for the 16px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */ const PATHS_16 = ["M1.365 7.672a.61.61 0 0 0 .03.828l3.461 3.46a.609.609 0 1 1-.86.862L.535 9.36a1.826 1.826 0 0 1-.091-2.485l2.652-3.072H1.991a.609.609 0 0 1 0-1.217h2.435c.336 0 .609.272.609.609V5.63a.609.609 0 1 1-1.218 0v-.798zm13.928-.379a1 1 0 0 1 0 1.414L11.05 12.95a1 1 0 0 1-1.414 0L5.393 8.707a1 1 0 0 1 0-1.414L9.636 3.05a1 1 0 0 1 1.414 0z"]; /** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */ const PATHS_20 = ["M1.707 9.59a.76.76 0 0 0 .038 1.035l4.326 4.326a.76.76 0 0 1-1.076 1.076L.669 11.701a2.283 2.283 0 0 1-.114-3.106l3.315-3.84H2.49a.76.76 0 1 1 0-1.521h3.043c.42 0 .76.34.76.76v3.044a.76.76 0 1 1-1.521 0V6.04zm17.409-.474a1.25 1.25 0 0 1 0 1.768l-5.303 5.303a1.25 1.25 0 0 1-1.768 0l-5.303-5.303a1.25 1.25 0 0 1 0-1.768l5.303-5.303a1.25 1.25 0 0 1 1.768 0z"]; export const RotateCw = React.forwardRef((props, ref) => { const isLarge = (props.size ?? IconSize.STANDARD) >= IconSize.LARGE; const paths = isLarge ? PATHS_20 : PATHS_16; return (_jsx(SVGIconContainer, { iconName: "rotate-cw", ref: ref, ...props, children: paths.map((d, i) => (_jsx("path", { d: d, fillRule: "evenodd" }, i))) })); }); RotateCw.displayName = `Blueprint6.Icon.RotateCw`; export default RotateCw; //# sourceMappingURL=rotate-cw.js.map