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 React from 'react'
import { ShippingAddressOptionItemProps } from './typings'
import { IconPlaceholder, AddressPlaceholder } from './styled'

function defaultRenderIcon(props: ShippingAddressOptionItemProps) {
  return <IconPlaceholder />
}

function defaultRenderText(props: ShippingAddressOptionItemProps) {
  return <AddressPlaceholder rows={4} lineSpacing={10} itemHeight={14} />
}

export { defaultRenderIcon, defaultRenderText }