added enum type for Icon method

This commit is contained in:
anovazzi1 2023-07-14 15:18:36 -03:00
commit 7d2f853630

View file

@ -164,9 +164,9 @@ export interface IVarHighlightType {
export type IconProps = {
name: string;
}
};
export type IconComponentProps = {
method: string;
method: "SVG" | "LUCIDE";
name: string;
}
};