14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
import type { DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
|
|
declare module 'react' {
|
|
namespace JSX {
|
|
interface IntrinsicElements {
|
|
'iconify-icon': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> & {
|
|
icon?: string;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|