@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.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 = ["M4.003 8.451c.42.002.857.15 1.196.466.35.327.551.793.551 1.333 0 1.037-.663 1.737-1.135 2.192l-.06.058H5A.75.75 0 0 1 5 14H3a.75.75 0 0 1-.727-.935c.108-.424.362-.758.59-1.008.22-.242.51-.501.71-.694.465-.45.677-.758.677-1.113 0-.155-.05-.213-.074-.236a.27.27 0 0 0-.179-.063c-.08 0-.14.029-.174.06-.022.021-.073.079-.073.239a.75.75 0 0 1-1.5 0c0-.542.2-1.01.552-1.338a1.75 1.75 0 0 1 1.2-.46M14 11.75a.75.75 0 0 1 0 1.5H7.75a.75.75 0 0 1 0-1.5zm0-4.5a.75.75 0 0 1 0 1.5H7.75a.75.75 0 1 1 0-1.5zM4.166 2.019a.75.75 0 0 1 .584.731V7a.75.75 0 1 1-1.5 0V4.395l-.112.053c-.158.07-.394.16-.638.16a.75.75 0 0 1-.056-1.499q.014-.001.084-.03c.087-.04.2-.102.318-.183.258-.177.426-.363.477-.47a.75.75 0 0 1 .843-.407M14 2.75a.75.75 0 0 1 0 1.5H7.75a.75.75 0 0 1 0-1.5z"];
export const ListNumbersIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "list-numbers", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
ListNumbersIcon.displayName = "Blueprint6.Icon.Next.ListNumbersIcon";
export default ListNumbersIcon;
//# sourceMappingURL=list-numbers.js.map