mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: codecalm <1282324+codecalm@users.noreply.github.com>
26 lines
871 B
Plaintext
26 lines
871 B
Plaintext
---
|
|
import type { HTMLTag } from 'astro/types'
|
|
|
|
// List group item (.list-group-item).
|
|
|
|
// `as` must stay out of the Props body: Astro's frontmatter scanner bails on a member
|
|
// literally named `as` and silently falls back to untyped props.
|
|
type PolymorphicProps = { as?: HTMLTag }
|
|
|
|
interface Props extends PolymorphicProps {
|
|
/** list-group-item-action (hover/focus affordance, typically for a/button items) */
|
|
action?: boolean
|
|
active?: boolean
|
|
disabled?: boolean
|
|
class?: string
|
|
/** remaining attributes (href, data-*, …) are forwarded to the element */
|
|
[key: string]: unknown
|
|
}
|
|
|
|
const { as: Element = 'div', action, active, disabled, class: className, ...rest }: Props = Astro.props
|
|
---
|
|
|
|
<Element class:list={['list-group-item', action && 'list-group-item-action', active && 'active', disabled && 'disabled', className]} {...rest}>
|
|
<slot />
|
|
</Element>
|