firq-dev-website/src/components/placeholder.astro
2025-04-08 09:32:41 +00:00

16 lines
287 B
Text

---
export interface Props {
height?: string
}
const { height } = Astro.props
const ph_height = height || "5rem"
---
<div class="placeholder"></div>
<style define:vars={{ph_height}}>
.placeholder {
visibility: hidden;
width: 100%;
height: var(--ph_height);
}
</style>