/** * Copyright (c) TonTech. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import type { FC, ComponentProps } from 'react'; import clsx from 'clsx'; import { Logo } from '../../../../components/ui/logo'; import { VerifiedIcon } from '../../../../components/ui/icons'; import styles from './currency-item.module.css'; export interface CurrencyItemProps extends ComponentProps<'button'> { ticker: string; name?: string; balance?: string; icon?: string; isVerified?: boolean; } export const CurrencyItem: FC = ({ ticker, name, balance, icon, isVerified, className, ...props }) => { return ( ); };