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