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>
32 lines
585 B
Plaintext
32 lines
585 B
Plaintext
---
|
|
import socials from '@data/socials.json'
|
|
---
|
|
|
|
<table class="table table-vcenter">
|
|
<thead>
|
|
<tr>
|
|
<th class="w-1">App</th>
|
|
<th>Name</th>
|
|
<th>CSS class</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{
|
|
socials.map((social) => (
|
|
<tr>
|
|
<td>
|
|
<div class={`social social-sm social-app-${social.file}`} />
|
|
</td>
|
|
<td>{social.name}</td>
|
|
<td>
|
|
<>
|
|
<code>.social-app-{social.file}</code>
|
|
<br />
|
|
</>
|
|
</td>
|
|
</tr>
|
|
))
|
|
}
|
|
</tbody>
|
|
</table>
|