UNPKG

@rocketsofawesome/mirage

Version:

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

20 lines (15 loc) 366 B
import PropTypes from 'prop-types' import styled from 'styled-components' import BaseAIcon from './AIcon.base' const AIcon = styled(BaseAIcon)` fill: ${props => props.theme.colors.rocketBlue}; ` AIcon.propTypes = { theme: PropTypes.shape({ colors: PropTypes.shape({ rocketBlue: PropTypes.string }) }) } /** @component */ export default AIcon