foldbank-mock/web/app/components/BankAccountInfoLine.tsx

20 lines
480 B
TypeScript
Raw Normal View History

import React from 'react'
import styles from './bankAccountInfoLine.module.css'
import { MdContentCopy } from 'react-icons/md'
export default function BankAccountInfoLine(props) {
return (
<div className={styles.info}>
<div className={styles.left}>{props.title}</div>
<div className={styles.right}>
<div className={styles.value}>{props.value}</div>
<MdContentCopy
className={styles.copyLogo}
/>
</div>
</div>
)
}