mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 17:47:42 +01:00
14 lines
287 B
TypeScript
14 lines
287 B
TypeScript
|
|
import createCodeExamples from '../.vitepress/lib/createCodeExamples'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
async load() {
|
||
|
|
const codeExamples = await createCodeExamples()
|
||
|
|
|
||
|
|
// const randomIcons = Array.from({ length: 200 }, () => getRandomItem(icons))
|
||
|
|
|
||
|
|
return {
|
||
|
|
codeExamples,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|