File tree 2 files changed +17
-3
lines changed
client/components/modules/plans/plan-cards
marketing/components/shared/Subscribe/BasePlanCard
2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,13 @@ const BasePlanCard = ({
168
168
< div
169
169
className = { `${ styles . footer } ${ footerClassProp } flex-justify-center` }
170
170
>
171
- { getCTA ( ) }
171
+ { /* {getCTA()} */ }
172
+ < Button
173
+ label = "subscribe"
174
+ category = "primary_solid"
175
+ disabled = { true }
176
+ text = "subscribe"
177
+ />
172
178
</ div >
173
179
</ div >
174
180
</ div >
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { ReactNode } from 'react';
2
2
import styles from './BasePlanCard.module.scss' ;
3
3
import { ValueProp } from '../plan.const' ;
4
4
import InfoBlock from '../InfoBlock/InfoBlock' ;
5
- import { Icon } from '@mozilla/lilypad-ui' ;
5
+ import { Icon , Button } from '@mozilla/lilypad-ui' ;
6
6
import { FeaturesT } from '../plan.const' ;
7
7
8
8
type PricePropsT = {
@@ -127,7 +127,15 @@ export const BasePlanCard = ({
127
127
{ /* FOOTER */ }
128
128
< footer className = { `${ styles . footer_wrapper } ` } >
129
129
{ additionalContent }
130
- < div className = { styles . footer } > { confirmButton } </ div >
130
+ < div className = { styles . footer } >
131
+ { /* {confirmButton} */ }
132
+ < Button
133
+ label = "subscribe"
134
+ category = "primary_solid"
135
+ disabled = { true }
136
+ text = "subscribe"
137
+ />
138
+ </ div >
131
139
</ footer >
132
140
</ div >
133
141
) ;
You can’t perform that action at this time.
0 commit comments