mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-04-04 14:32:27 +02:00
33 lines
852 B
JavaScript
33 lines
852 B
JavaScript
// @flow strict
|
|
import React from 'react';
|
|
import { getContactHref, getIcon } from '../../../utils';
|
|
import Icon from '../../Icon';
|
|
import styles from './Contacts.module.scss';
|
|
|
|
type Props = {
|
|
contacts: {
|
|
[string]: string,
|
|
},
|
|
};
|
|
|
|
const Contacts = ({ contacts }: Props) => (
|
|
<div className={styles['contacts']}>
|
|
<ul className={styles['contacts__list']}>
|
|
{Object.keys(contacts).map((name) => (!contacts[name] ? null : (
|
|
<li className={styles['contacts__list-item']} key={name}>
|
|
<a
|
|
className={styles['contacts__list-item-link']}
|
|
href={getContactHref(name, contacts[name])}
|
|
rel="noopener noreferrer"
|
|
target="_blank"
|
|
>
|
|
<Icon name={name} icon={getIcon(name)} />
|
|
</a>
|
|
</li>
|
|
)))}
|
|
</ul>
|
|
</div>
|
|
);
|
|
|
|
export default Contacts;
|