/* @flow */ import React from 'react'; import PropTypes from 'prop-types'; import { Icon, colors as COLORS, icons } from 'trezor-ui-components'; import type { TrezorDevice } from 'flowtype'; type Props = { device: TrezorDevice, size?: number, color?: string, hoverColor?: string, onClick?: any, }; const getDeviceIcon = (majorVersion: number) => { switch (majorVersion) { case 1: return icons.T1; case 2: return icons.T2; default: return icons.T2; } }; const DeviceIcon = ({ device, size = 32, color = COLORS.TEXT_SECONDARY, hoverColor, onClick, }: Props) => { const majorVersion = device.features ? device.features.major_version : 2; const icon = getDeviceIcon(majorVersion); return ; }; DeviceIcon.propTypes = { device: PropTypes.object, size: PropTypes.number, color: PropTypes.string, hoverColor: PropTypes.string, onClick: PropTypes.func, }; export default DeviceIcon;