(type: AccountType)
| 21 | } |
| 22 | |
| 23 | function icon(type: AccountType) { |
| 24 | switch (type) { |
| 25 | case AccountType.PUBLIC: |
| 26 | return <FiEye />; |
| 27 | case AccountType.PRIVATE: |
| 28 | return <FiEyeOff />; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | export default function CommunityTypeRow({ |
| 33 | type: initialType, |