summaryrefslogtreecommitdiff
path: root/src/components/ui/Background.astro
blob: 1093c175fc23754ca5e13442d686bc8526c4aa60 (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-dark dark:bg-transparent': isDark }]}>
  <slot />
</div>