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    
@skava/ui / src / components / abstractions / PaymentMethod / List / renderProps.tsx
Size: Mime:
import React from 'react'
import { Empty } from 'atoms/Empty'
import { ProductListProps, ProductListState } from './typings'
import { PaymentActionTile } from '../Item/PaymentActionTile'

function defaultRenderText(props: ProductListProps) {
  return <PaymentActionTile {...props} />
}

function defaultRenderIcon() {
  return <Empty />
}

export { defaultRenderIcon, defaultRenderText }