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>
16 lines
296 B
Plaintext
16 lines
296 B
Plaintext
---
|
|
// Card footer (.card-footer).
|
|
|
|
interface Props {
|
|
/** card-footer-transparent */
|
|
transparent?: boolean
|
|
class?: string
|
|
}
|
|
|
|
const { transparent, class: className } = Astro.props
|
|
---
|
|
|
|
<div class:list={['card-footer', transparent && 'card-footer-transparent', className]}>
|
|
<slot />
|
|
</div>
|