### `<w-snackbar-item>` API

#### Properties

| Name | Type | Default | Summary |
|-|-|-|-|
| action-placement | [`SnackbarActionPlacement`](#snackbaractionplacement) | `"inline"` | The placement of the action and close buttons. |
| close (JS only) | `close() => void` | `-` | Remove the snackbar item from the document. |
| duration | `number` | `-` | How long the message should stay in the document before removing itself. |

#### Property Details

##### action-placement

The placement of the action and close buttons.

- Type: [`SnackbarActionPlacement`](#snackbaractionplacement)
- Default: `"inline"`

##### close (JS only)

Remove the snackbar item from the document.

Moves focus to the last focused element outside of the snackbar item, if available.

- Type: `close() => void`
- Default: `-`

##### duration

How long the message should stay in the document before removing itself.

- Type: `number`
- Default: `-`

#### Types

##### SnackbarActionPlacement

`'inline' | 'block'`

