UNPKG

lucide-react

Version:

A Lucide icon library package for React applications.

26 lines (22 loc) 695 B
/** * @license lucide-react v1.46.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. */ import buildLucideIconNode from './buildLucideIconNode.mjs'; function buildLucideIconForReact(icon, params = {}) { return buildLucideIconNode(icon, { ...params, attributeNames: { ...params.attributeNames, class: "className", "stroke-width": "strokeWidth", "stroke-linecap": "strokeLinecap", "stroke-linejoin": "strokeLinejoin", "vector-effect": "vectorEffect" } }); } export { buildLucideIconForReact as default }; //# sourceMappingURL=buildLucideIconForReact.mjs.map