docs(site): correct Vanilla icon import casing (#4597)

This commit is contained in:
Hugo Moreira
2026-08-18 04:37:48 -07:00
committed by GitHub
parent 2e88f33494
commit c0ea22e282

View File

@@ -13,11 +13,11 @@ const getIconCodes = (): CodeExampleType => {
title: 'Vanilla',
code: `\
<script>
import { createIcons, $CamelCase } from 'lucide';
import { createIcons, $PascalCase } from 'lucide';
createIcons({
icons: {
$CamelCase
$PascalCase
}
});
</script>