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', title: 'Vanilla',
code: `\ code: `\
<script> <script>
import { createIcons, $CamelCase } from 'lucide'; import { createIcons, $PascalCase } from 'lucide';
createIcons({ createIcons({
icons: { icons: {
$CamelCase $PascalCase
} }
}); });
</script> </script>