import styles from './styles.module.scss' import { Church, ChurchIcon } from '@/components/ChurchIcon/ChurchIcon' type ChurchCardProps = { church: Church, width?: number, backgroundColor: string, } export const ChurchCard = ({church, backgroundColor, width = 286 }: ChurchCardProps) => { return
}