<Backdrop />

base/backdrop.svelte

"The background, the stage, the curtain: it's all a backdrop"
P. Shaw, 1900

Component Backdrop examples :
Using slots
component Backdrop demo using slots
some content
isOpen boolean
flow flow-preset
isLoading boolean
code

	<Backdrop
		flow="relative"
		on:click={()=>{}}>
		<div class="flex-h flex-align-middle-center h-full">
			<div class="pad-4 border radius-small theme-bg">
				some content
			</div>
		</div>
	</Backdrop>
Api preview :

missing