mirror of
https://github.com/tabler/tabler.git
synced 2026-08-07 03:42:27 +04:00
8962710163
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
14 lines
194 B
Plaintext
14 lines
194 B
Plaintext
---
|
|
// Badges list container (.badges-list).
|
|
|
|
interface Props {
|
|
class?: string
|
|
}
|
|
|
|
const { class: className } = Astro.props
|
|
---
|
|
|
|
<div class:list={['badges-list', className]}>
|
|
<slot />
|
|
</div>
|