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