persona-community-5/.pnpm-store/v3/files/1f/1b045d2050b527a450f8db37a1a0a5e589275d5d8de88d3e89af16d32cfb7e220333ddf352b6685b9d2455756de0d9745dcb5d8a0b36c1130fa6c05456506a
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

15 lines
504 B
Plaintext

/**
* @license lucide-react v0.395.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
const toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
const mergeClasses = (...classes) => classes.filter((className, index, array) => {
return Boolean(className) && array.indexOf(className) === index;
}).join(" ");
export { mergeClasses, toKebabCase };
//# sourceMappingURL=utils.js.map