/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
docs/components/Socials.astro
31 строка
585 B
Paweł Kuna
Add quality gates: Prettier for Astro, astro check for shared, unused SCSS variable lint (#2749)
03 авг 2026, 01:47
Не верифицирован
03 авг 2026, 01:47
8962710
Код
Авторство
О чём код?
--- 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>