Repository URL to install this package:
Version:
0.14.1 ▾
|
import { DefaultProps } from 'icons/typings'
export interface ArrowIconProps {
left?: boolean
right?: boolean
down?: boolean
up?: boolean
isLeft?: boolean
isRight?: boolean
isDown?: boolean
isUp?: boolean
isAnimated?: boolean
animated?: boolean
type?: string
color?: string,
// left,
// right,
// down,
// up,
// fat,
// circle,
// rightcircle,
// leftcircle,
// leftCircle,
// rightCircle,
// animated - @alias
// isAnimated
}
export type DirectionType = (props: ArrowIconProps) => boolean
export { ArrowIconProps as Props }