import * as React from 'react'; import { ColorOption } from '../style/theme'; import { Pulse } from './animations/pulse'; import { Text } from './ui'; export interface PlainPlaceholder { color: ColorOption; } export const PlainPlaceholder: React.StatelessComponent = props => ( ); export interface AmountPlaceholderProps { color: ColorOption; pulsating: boolean; } export const AmountPlaceholder: React.StatelessComponent = props => { if (props.pulsating) { return ( ); } else { return ; } };