cosmo-ui
Version:
Common React components
18 lines (14 loc) • 373 B
text/typescript
import { StylableComponent } from '.'
export type IconAngle = 90 | 180 | 270
export interface IconProps extends StylableComponent {
icon?: string
href?: string
containerClassName?: string
onClick?: () => any
primary?: boolean
stroke?: string
fill?: string
size?: number
rotate?: IconAngle
}
export type IconPropsKey = keyof IconProps