Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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 }