Initial React project

This commit is contained in:
Johan
2026-03-05 00:02:32 +01:00
parent 01363820e2
commit cfecd57b85
17 changed files with 1193 additions and 16 deletions

13
src/iconify-icon.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import type { DetailedHTMLProps, HTMLAttributes } from 'react';
declare module 'react' {
namespace JSX {
interface IntrinsicElements {
'iconify-icon': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & {
icon?: string;
};
}
}
}
export {};