SnackbarContainer
The wrapper element creating a context to show snackbars.
The main piece of functionality is the showSnackbar function. This function accepts an object with the following fields: 
- component(default:- Snackbar) – the component to render as a snackbar;
- props(default:- {}) – the props to be passed to the snackbar. The component also injects the- closeCallbackprop into this object, which is a function that can be called to force-close the snackbar;
- duration(default:- 4000) – the duration to show the snackbar in milliseconds.
You can obtain this function in three different ways:
- If you need it in the <script>of the component that hasSnackbarContaineras a child:
 Get ahold of theSnackbarContainerinstance withbind:thisand access theshowSnackbarproperty on the instance.
- If you need to pass it in a property to the immediate children: 
 Use an exposed slot property withlet:showSnackbar.
- If you need to access it deep in the component tree: 
 UsegetContextinside a child of this component.
<SnackbarContainer let:showSnackbar>
  <Button on:click={() => showSnackbar({ props: { text: 'Hello!' } })}>
    press to see
  </Button>
</SnackbarContainer>Properties #
Style Properties
| Name  | Default  | Type  | Description  | 
|---|---|---|---|
| position | SnackbarPositions.BOTTOM_LEFT | SnackbarPositions | The position of the snackbar stack inside the window. | 
Class Properties
All <SnackbarContainer> components create the element with a .snackbar-stack class after the default slot content. 
Slots #
Default slot
Any content where you'd like to initiate the snackbar context. The snackbar stack will be inserted after it, invisibly.
| Prop Name  | Type  | Description  | 
|---|---|---|
| showSnackbar | Function | Callback to display a new snackbar. | 
Exported Attributes #
These attributes can be accessed from variables holding component instances bound using bind:this on the instance. 
| Name  | Type  | Description  | 
|---|---|---|
| showSnackbar | Function | Callback to display a new snackbar. Useful when you need to show a snackbar inside a component where the SnackbarContaineris created. | 
Related Objects #
The following objects are available as named exports in 'attractions/snackbar'. 
SnackbarPositions # 
 An enum listing the possible positions for the snackbar stack.
| Field  | Description  | 
|---|---|
| TOP_LEFT | In the top left corner. | 
| TOP_MIDDLE | At the top, horizontally centered. | 
| TOP_RIGHT | In the top right corner. | 
| MIDDLE_RIGHT | Along the right edge, vertically centered. | 
| BOTTOM_RIGHT | In the bottom right corner. | 
| BOTTOM_MIDDLE | At the bottom, horizontally centered. | 
| BOTTOM_LEFT | In the bottom left corner. | 
| MIDDLE_LEFT | Along the left edge, vertically centered. | 
snackbarContextKey # 
 The context key to pass to Svelte's getContext to obtain the showSnackbar callback (described above). 
SCSS Variables #
| Name  | Description  | Default  | 
|---|---|---|
| $snackbar-horizontal-offset | The offset from the left or the right edge of the screen for the snackbars. | 5% | 
| $snackbar-vertical-offset | The offset from the top or the bottom edge of the screen for the snackbars. | 3em |