whatsapp icon react

Solutions on MaxInterview for whatsapp icon react by the best coders in the world

showing results for - "whatsapp icon react"
Maximiliano
07 Oct 2020
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