summaryrefslogtreecommitdiff
path: root/src/components/ui/Background.astro
blob: f220487a8466165312a9aa66f7966fb35f25e93f (plain)
1
2
3
4
5
6
7
8
9
10
11
---
export interface Props {
  isDark?: boolean;
}

const { isDark = false } = Astro.props;
---

<div class:list={['absolute inset-0', { 'bg-section dark:bg-dark': isDark }]}>
  <slot />
</div>