UNPKG

@rocketsofawesome/mirage

Version:

[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)

19 lines (15 loc) 408 B
import PropTypes from 'prop-types' import styled from 'styled-components' const InformationalSection = styled.section` padding: 2.0rem 1.5rem; background-color: ${props => props.theme.colors.lightBlue[0]}; ` InformationalSection.propTypes = { theme: PropTypes.shape({ colors: PropTypes.shape({ lightBlue: PropTypes.array }) }) } /** @component */ export default InformationalSection