mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
14 lines
317 B
Plaintext
14 lines
317 B
Plaintext
---
|
|
interface Props {
|
|
color?: string
|
|
animated?: boolean
|
|
label?: string
|
|
}
|
|
|
|
const { color, animated, label } = Astro.props
|
|
|
|
const classes = ['status-dot', color && `status-${color}`, animated && 'status-dot-animated']
|
|
---
|
|
|
|
<span class:list={classes}>{label && <span class="visually-hidden">{label}</span>}</span>
|