1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-07 03:42:27 +04:00
Files
tabler/shared/ui/FormHint.astro

16 lines
257 B
Plaintext

---
// Form hint text (.form-hint).
interface Props {
/** element to render — default div */
as?: string
class?: string
}
const { as: Tag = 'div', class: className } = Astro.props
---
<Tag class:list={['form-hint', className]}>
<slot />
</Tag>