Repository URL to install this package:
|
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
presets
/
Checkout
/
GuestUser
/
SingleShipping
/
styled.tsx
|
|---|
import { styled } from 'styleh-components'
import { PrimaryButton } from 'presets/Buttons'
import { ButtonLabel } from 'atoms/Button'
const StyledPrimaryButton = styled.withComponent(PrimaryButton)`
background-color: transparent;
width: auto;
height: auto;
padding: 0;
cursor: pointer;
margin-bottom: rem(24);
${ButtonLabel} {
color: #00a0db;
margin: 0;
}
`
export {
StyledPrimaryButton,
}