@rocketsofawesome/mirage
Version:
[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)
31 lines (26 loc) • 641 B
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import styled from 'styled-components'
const BaseX = ({ className }) => {
return (
<g>
<polyline className={className} points="155,30,30,155" fill="none" stroke="black" />
<polyline className={className} points="30,30,155,155" fill="none" stroke="black" />
</g>
)
}
const X = styled(BaseX)`
fill: none;
stroke-width: 10;
stroke-linecap: round;
stroke: ${props => props.theme.colors.white};
`
X.propTypes = {
theme: PropTypes.shape({
colors: PropTypes.shape({
white: PropTypes.string
})
})
}
export default X
export { BaseX }