Repository URL to install this package:
Version:
0.9.6 ▾
|
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
}