@rocketsofawesome/mirage
Version:
[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)
21 lines (15 loc) • 390 B
JavaScript
import PropTypes from 'prop-types'
import styled from 'styled-components'
import Checkmark from './Checkmark.base'
const GrayCheckmark = styled(Checkmark)`
stroke: ${props => props.theme.colors.loading}
`
GrayCheckmark.propTypes = {
theme: PropTypes.shape({
colors: PropTypes.shape({
loading: PropTypes.string
})
})
}
/** @component */
export default GrayCheckmark