import React from 'react' export interface PlaceholderProps { style?: React.CSSProperties margin?: boolean fill?: boolean fixed?: boolean } export const Placeholder = ({ style, margin, fill, fixed = true }: PlaceholderProps) => (