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