mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 15:07:41 +01:00
11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
export type IconNode = readonly [string, object];
|
|
export type IconData = readonly [string, object, IconNode[] ];
|
|
|
|
export declare const icons: { [key: string]: IconData };
|
|
|
|
import { default as createElementTmp } from './build/createElement';
|
|
|
|
export function createElement(ico: IconData): HTMLElement {
|
|
return createElementTmp(ico as any);
|
|
}
|