mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-15 21:27:42 +01:00
* Ignore linting for examples in docs * Formatting JSX single attribute per line * Separte `format` and `lint:format` in package.json * Bump prettier version * Run format
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import iconNodes from '../.vitepress/data/iconNodes';
|
|
|
|
export default {
|
|
async load() {
|
|
return {
|
|
icons: Object.entries(iconNodes).map(([name, iconNode]) => ({ name, iconNode })),
|
|
};
|
|
},
|
|
};
|