UNPKG

instantjob-recruiter-client

Version:

a set of tools for creating an instantjob recruiter react client

21 lines (18 loc) 322 B
import React from 'react' import styled from 'styled-components' export default ({icon, children}) => ( <Container> <Icon> {icon} </Icon> {children} </Container> ) const Container = styled.div` display: flex; align-items: center; ` const Icon = styled.div` padding: 5px; font-size: 16px; `