UNPKG

lucide-preact

Version:

A Lucide icon library package for Preact applications.

14 lines (11 loc) 440 B
/** * @license lucide-preact v1.25.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. */ const mergeClasses = (...classes) => classes.filter((className, index, array) => { return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index; }).join(" ").trim(); export { mergeClasses }; //# sourceMappingURL=mergeClasses.mjs.map