Skip to content

Commit bbd051b

Browse files
committed
update button
1 parent c256d40 commit bbd051b

1 file changed

Lines changed: 50 additions & 2 deletions

File tree

docs/base-account/guides/accept-payments.mdx

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,59 @@ See full props and theming options in the [Button Reference](/base-account/refer
180180
If you intend on using the BasePayButton, please follow the [Brand Guidelines](/base-account/reference/ui-elements/brand-guidelines) to ensure consistency across your application.
181181

182182
<div style={{ display: 'flex', justifyContent: 'center' }}>
183-
<BasePayButton />
183+
<button
184+
type="button"
185+
style={{
186+
display: 'flex',
187+
alignItems: 'center',
188+
justifyContent: 'center',
189+
padding: '12px 16px',
190+
backgroundColor: '#ffffff',
191+
border: 'none',
192+
borderRadius: '8px',
193+
cursor: 'pointer',
194+
fontFamily: 'system-ui, -apple-system, sans-serif',
195+
minWidth: '180px',
196+
height: '44px'
197+
}}
198+
>
199+
<img
200+
src="/images/base-account/BasePayBlueLogo.png"
201+
alt="Base Pay"
202+
style={{
203+
height: '20px',
204+
width: 'auto'
205+
}}
206+
/>
207+
</button>
184208
</div>
185209
<br />
186210
<div style={{ display: 'flex', justifyContent: 'center' }}>
187-
<BasePayButton colorScheme="dark" />
211+
<button
212+
type="button"
213+
style={{
214+
display: 'flex',
215+
alignItems: 'center',
216+
justifyContent: 'center',
217+
padding: '12px 16px',
218+
backgroundColor: '#0000FF',
219+
border: 'none',
220+
borderRadius: '8px',
221+
cursor: 'pointer',
222+
fontFamily: 'system-ui, -apple-system, sans-serif',
223+
minWidth: '180px',
224+
height: '44px'
225+
}}
226+
>
227+
<img
228+
src="/images/base-account/BasePayWhiteLogo.png"
229+
alt="Base Pay"
230+
style={{
231+
height: '20px',
232+
width: 'auto'
233+
}}
234+
/>
235+
</button>
188236
</div>
189237
</Warning>
190238

0 commit comments

Comments
 (0)