UNPKG

instantjob-recruiter-client

Version:

a set of tools for creating an instantjob recruiter react client

32 lines (28 loc) 567 B
import React from 'react' import {MdSmartphone, MdArrowDownward} from 'react-icons/lib/md' import styled from 'styled-components' export default () => ( <Container> <MdSmartphone /> <Overlay> <MdArrowDownward /> </Overlay> </Container> ) const Container = styled.div` display: flex; justify-content: center; align-items: center; position: relative; ` const Overlay = styled.div` position: absolute; top: 0; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: center; font-size: 50%; `