mirror of
https://github.com/tabler/tabler.git
synced 2026-08-08 04:12:26 +04:00
8962710163
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
39 lines
899 B
Plaintext
39 lines
899 B
Plaintext
---
|
|
import payments from '@data/payments.json'
|
|
---
|
|
|
|
<table class="table table-vcenter">
|
|
<thead>
|
|
<tr>
|
|
<th class="w-1">Icon light</th>
|
|
<th class="w-1">Icon dark</th>
|
|
<th>Provider name</th>
|
|
<th>CSS class</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{
|
|
payments.map((payment) => {
|
|
return (
|
|
<tr>
|
|
<td>
|
|
<div class={`payment payment-sm payment-provider-${payment.logo}`} />
|
|
</td>
|
|
<td>
|
|
<div class={`payment payment-sm payment-provider-${payment.logo}-dark`} />
|
|
</td>
|
|
<td>{payment.name}</td>
|
|
<td>
|
|
<>
|
|
<code>.payment-provider-{payment.logo}</code>
|
|
<br />
|
|
</>
|
|
<code>.payment-provider-{payment.logo}-dark</code>
|
|
</td>
|
|
</tr>
|
|
)
|
|
})
|
|
}
|
|
</tbody>
|
|
</table>
|