| 6 | import styles from './index.module.scss'; |
| 7 | |
| 8 | interface CommunityButtonProps { |
| 9 | communityType: string; |
| 10 | onClick: (value: string) => void; |
| 11 | iconSize?: string; |
| 12 | label?: string; |
| 13 | fontSize?: string; |
| 14 | } |
| 15 | |
| 16 | export default function CommunityButton({ |
| 17 | onClick, |
nothing calls this directly
no outgoing calls
no test coverage detected