Add contact icons for Facebook, LinkedIn, Instagram and Line.

This commit is contained in:
Aleksander Helgaker
2019-08-23 21:59:21 +02:00
parent 0c93f9c8a9
commit 2d590f411e
7 changed files with 60 additions and 8 deletions

View File

@@ -8,4 +8,8 @@ test('getContactHref', () => {
expect(getContactHref('vkontakte', '#')).toBe('https://vk.com/#');
expect(getContactHref('telegram', '#')).toBe('https://t.me/#');
expect(getContactHref('rss', '#')).toBe('#');
});
expect(getContactHref('linkedin', '#')).toBe('#');
expect(getContactHref('instagram', '#')).toBe('#');
expect(getContactHref('line', '#')).toBe('#');
expect(getContactHref('facebook', '#')).toBe('#');
});