@navinc/base-react-components
Version:
Nav's Pattern Library
22 lines (17 loc) • 343 B
JavaScript
import styled from 'styled-components'
const Icon = styled.div`
display: flex;
flex-direction: row;
align-content: center;
align-items: center;
justify-content: center;
flex-wrap: nowrap;
flex: 0 0 32px;
margin: 4px 24px 0 0;
> img {
width: 100%;
height: auto;
}
`
Icon.displayName = 'Icon'
export default Icon