1import styled from 'styled-components'
2import { FaWhatsapp as FaWhatsapp } from 'react-icons/fa'
3
4export const WhatsappIcon = styled(FaWhatsapp)`
5 margin-top: 16px;
6`
7
8export const StyledLink = styled.a`
9 z-index: 100;
10 position: fixed;
11 width: 60px;
12 height: 60px;
13 bottom: 40px;
14 right: 40px;
15
16 background-color: #01e675;
17 color: white;
18
19 border-radius: 50px;
20 text-align: center;
21 font-size: 30px;
22 box-shadow: 2px 2px 3px #222;
23 p {
24 position: fixed;
25 right: -100%;
26 color: black;
27 }
28`
29