/* @flow */ import React from 'react'; type Props = { color: string, }; const IphoneIcon = ({ color }: Props) => ( ); export default IphoneIcon;