feat(icons): upgrade all emojis across hero, pillars, services, studio, testimonials, and mobile dock to luxury gold SVG vector icons

This commit is contained in:
2026-08-30 15:09:52 -07:00
parent 870a52c39d
commit 927cbd35fa
4261 changed files with 317978 additions and 198 deletions
+32
View File
@@ -0,0 +1,32 @@
/**
* @license lucide-react v1.37.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { forwardRef, createElement } from 'react';
import { mergeClasses } from './shared/src/utils/mergeClasses.mjs';
import { toKebabCase } from './shared/src/utils/toKebabCase.mjs';
import { toPascalCase } from './shared/src/utils/toPascalCase.mjs';
import Icon from './Icon.mjs';
const createLucideIcon = (iconName, iconNode) => {
const Component = forwardRef(
({ className, ...props }, ref) => createElement(Icon, {
ref,
iconNode,
className: mergeClasses(
`lucide-${toKebabCase(toPascalCase(iconName))}`,
`lucide-${iconName}`,
className
),
...props
})
);
Component.displayName = toPascalCase(iconName);
return Component;
};
export { createLucideIcon as default };
//# sourceMappingURL=createLucideIcon.mjs.map