import React from 'react'; import styled from 'styled-components'; import { Facebook, Twitter, Instagram } from "@styled-icons/fa-brands"; import { Envelope } from "@styled-icons/fa-solid"; import { StyledIconBase } from '@styled-icons/styled-icon' import { Container } from 'react-bootstrap'; const ContainerPadded = styled(Container)` padding: 7% 15%; text-align: center; `; const WhiteSection = styled.footer` background: ${props => props.background || "white"}; `; const ContainerCentered = styled.div` display:flex; flex-direction: row; justify-content: center; `; const IconStyler = styled.div` ${StyledIconBase} { width: ${props => props.width ? props.width : 26}px; height: ${props => props.height ? props.height : 26}; color: ${props => props.color ? props.color : "white"}; } margin: 20px 10px; `; const Footer = () => { return (

© Copyright 2020 Locaft

Terms and Conditions

Privacy Policy

) } export default Footer;