Repository URL to install this package:
|
Version:
1.3.2 ▾
|
import { styled } from 'view-container'
import { Button, ButtonLabel } from 'atoms/Button'
const StyledPrimaryButton = styled.withComponent(Button)`
background-color: #00a0db;
border: none;
border-radius: 4px;
width: 100%;
${ButtonLabel} {
color: #ffffff;
text-transform: capitalize;
}
`
export { StyledPrimaryButton }