/* @flow */ import React from 'react'; type Props = { type: 'dark' | 'light', }; const ThemeIcon = ({ type = 'dark' }: Props) => { if (type === 'dark') { return ( ); } else if (type === 'light') { return ( ); } }; export default ThemeIcon;