// @flow import React from 'react'; import styles from './Icon.module.scss'; type Props = { icon: { viewBox?: string, path?: string } }; const Icon = ({ icon }: Props) => ( ); export default Icon;