- .agent/, .claude/, .vscode/ 설정 파일 - design/ 디자인 리소스 - reports/, research/ 분석 문서 - testcase/ 테스트 케이스 문서 - db_sync_chandj.bat, sam.code-workspace Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
597 B
TypeScript
20 lines
597 B
TypeScript
import * as React from "react";
|
|
export interface IconTree {
|
|
tag: string;
|
|
attr: {
|
|
[key: string]: string;
|
|
};
|
|
child: IconTree[];
|
|
}
|
|
export declare function GenIcon(data: IconTree): (props: IconBaseProps) => React.JSX.Element;
|
|
export interface IconBaseProps extends React.SVGAttributes<SVGElement> {
|
|
children?: React.ReactNode;
|
|
size?: string | number;
|
|
color?: string;
|
|
title?: string;
|
|
}
|
|
export type IconType = (props: IconBaseProps) => React.ReactNode;
|
|
export declare function IconBase(props: IconBaseProps & {
|
|
attr?: Record<string, string>;
|
|
}): JSX.Element;
|