10 lines
165 B
TypeScript
Raw Normal View History

2025-10-21 12:48:19 +07:00
interface Props {
name?: string
size?: number | string
color?: string
class?: string
}
export interface IconProps extends Props {
icon: string
}