import React from 'react'; import { LOGOS } from '$constants/logos'; import { Icon } from '$components/panels/Icon'; import classnames from 'classnames'; type Props = { logo: String, setLogo: Function, } export const LogoDialog = ({ logo, setLogo }: Props) => (
{ Object.keys(LOGOS).map(item => (
setLogo(item)} key={item} > {LOGOS[item][0]}
)) }
);