mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 20:37:41 +01:00
12 lines
306 B
JavaScript
12 lines
306 B
JavaScript
import pkg from '../package.json' with { type: 'json' };
|
|
|
|
export function getJSBanner() {
|
|
return `/**
|
|
* @license ${pkg.name} v${pkg.version} - ${pkg.license}
|
|
*
|
|
* This source code is licensed under the ${pkg.license} license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
`;
|
|
}
|