Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
import { styled } from 'styleh-components'
import Button, { ButtonLabel } 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;
${ButtonLabel} {
text-transform: inherit;
margin: 0;
}
`
export { Wrapper, ButtonWrapper, StyledButton }