/** * @file * @license @lucide/svelte v1.47.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. */ import type { LucideBuildParams, LucideIconData, LucideIconNode } from './types.js'; /** * Creates a Lucide icon node (an svgson-like format) from a Lucide icon object. * * @param icon The icon to build. * @param params Additional build parameters. */ declare function buildLucideIconNode(icon: LucideIconData, params?: LucideBuildParams): LucideIconNode; export default buildLucideIconNode;