+ {/* Minimal JSX */}
+ {title || "Hero Video Expand Content"}
+ {description || "This is a video hero section."}
+ {videoSrc && }
+
);
};
diff --git a/src/utils/resolve-icon.tsx b/src/utils/resolve-icon.tsx
index 531a078..49d21fd 100644
--- a/src/utils/resolve-icon.tsx
+++ b/src/utils/resolve-icon.tsx
@@ -1,21 +1,12 @@
-import { resolveIcon } from "./resolve-icon";
-import type { IconInput } from "./resolve-icon";
+import { Circle, LucideIcon } from 'lucide-react';
-const DynamicIcon = ({
- icon,
- size,
- className,
- strokeWidth,
-}: {
- icon: IconInput;
- size?: number;
- className?: string;
- strokeWidth?: number;
-}) => {
- const Icon = resolveIcon(icon);
- return