# EmbedPreviewerLink

A dev-only floating link to the embed previewer page; renders nothing unless dev is true.

**Category:** Components/Utilities/EmbedPreviewerLink

**Import:** `import { EmbedPreviewerLink } from '@reuters-graphics/graphics-components'`

## Props

| Prop | Type | Default | Required | Description |
|------|------|---------|:--------:|-------------|
| `dev` | `boolean` | `false` |  | — |

## Examples

### Demo

```svelte
<EmbedPreviewerLink dev={true} />
```

## Documentation

# EmbedPreviewerLink

The `EmbedPreviewerLink` component is a tool for previewing the embeds in development. It adds an icon at the bottom of the page that, when clicked, opens a previewer with the embeds.

```svelte
<script>
  import { EmbedPreviewerLink } from '@reuters-graphics/graphics-components';

  import { dev } from '$app/environment';
</script>

<EmbedPreviewerLink {dev} />
```
