Repository URL to install this package:
|
Version:
2.7.3 ▾
|
import { styled } from 'styleh-components'
import Button from 'atoms/Button'
const Wrapper = styled.div``
const ButtonWrapper = styled.div``
const StyledButton = styled.withComponent(Button)`
width: 100%;
color: ${props => props.textColor};
background-color: ${props => props.backgroundColor};
border: none;
`
export { Wrapper, ButtonWrapper, StyledButton }