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 { ReactNode } from 'react'

// paragraph or just text?
export type PlaceholderBreedType =
  | 'media'
  | 'image'
  | 'paragraph'
  | 'rectangle'
  | 'square'
  | 'circle'
  | 'round'
  | 'text'

export interface PlaceholderProps {
  className?: string
  children?: ReactNode
  breedType?: PlaceholderBreedType
}