main
ts 9 lines 186 Bytes
Raw
1 import 'react'
2 import './icon.css'
3
4 export interface IconProps {
5 height?: number
6 width?: number
7 onClick?: React.MouseEventHandler<HTMLImageElement>
8 style?: React.CSSProperties
9 }