/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
shared/components/marketing/sections/Subscribe.astro
31 строка
809 B
Paweł Kuna
Narrow component prop types, remove unused props and dead code (#2838)
10 авг 2026, 00:14
Не верифицирован
10 авг 2026, 00:14
4f7beec
Код
Авторство
О чём код?
--- import Icon from '@ui/Icon.astro' interface Props { class?: string } const { class: className } = Astro.props const sectionClass = ['section', className] --- <section class:list={sectionClass}> <div class="container"> <div class="section-header mb-6"> <h2 class="section-title">Subscribe on our newsletter</h2> <p class="section-description">Get daily news on upcoming offers from many suppliers all over the world</p> </div> </div> <div class="container-tight"> <div class="row"> <div class="col"> <input class="w-100 form-control" placeholder="Your Email" type="email" /> </div> <div class="col-auto"> <button type="submit" class="btn btn-primary"><Icon name="mail" /> Subscribe</button> </div> </div> </div> </section>