13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
export interface SmartIconType {
|
|
Name: string;
|
|
Size?: number;
|
|
Color?: string;
|
|
ClassName?: string;
|
|
Variant?: string;
|
|
}
|
|
|
|
export type IconType =
|
|
React.ElementType |
|
|
React.ReactNode |
|
|
SmartIconType;
|