www_ourworld_freezone/src/components/ui/Background.astro
sasha-astiadi 30a3c6a3d1 new
2024-07-01 17:20:18 +02:00

12 lines
198 B
Plaintext

---
export interface Props {
isDark?: boolean;
}
const { isDark = false } = Astro.props;
---
<div class:list={['absolute inset-0', { 'bg-dark dark:bg-transparent': isDark }]}>
<slot />
</div>