10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
interface Props {
|
|
name?: string
|
|
size?: number | string
|
|
color?: string
|
|
class?: string
|
|
}
|
|
export interface IconProps extends Props {
|
|
icon: string
|
|
}
|