UNPKG

@rocketsofawesome/mirage

Version:

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

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