Getting Started - Svelte Bootstrap SVG Icons v1

Requirements #

You need to use the following:

- Svelte 4 or 5

Installation #

Install Svelte and Svelte Bootstrap SVG Icons:

npm create svelte@latest my-project
cd my-project
pnpm i -D svelte-bootstrap-svg-icons

Basic Usage #

In a svelte file:

<script>
  import { Activity } from 'svelte-bootstrap-svg-icons';
</script>

<Activity />

aria-label #

Use ariaLabel props to edit the aria-label.

<Activity
  ariaLabel="blue activity svg icon"
  color="blue"
/>

IDE support #

If you are using an LSP-compatible editor, such as VSCode, Atom, Sublime Text, or Neovim, hovering over a component name will display a documentation link, features, props, events, etc.

Faster compiling #

If you need only a few icons from this library in your Svelte app, import them directly. This can optimize compilation speed and improve performance by reducing the amount of code processed during compilation.

<script>
  import Activity from 'svelte-bootstrap-svg-icons/Activity.svelte';
</script>

<Activity />

Passing down other attributes #

Since all icons have ...$$restProps, you can pass other attibutes as well.

<Activity id="my-svg" transform="rotate(45)" />

Using svelte:component #

<script>
  import { Activity } from 'svelte-bootstrap-svg-icons';
</script>

<svelte:component this="{Activity}" />

Using onMount #

<script>
  import { Activity } from 'svelte-bootstrap-svg-icons';
  import { onMount } from 'svelte';
  const props = {
    size: '50',
    color: '#ff0000'
  };
  onMount(() => {
    const icon = new Activity({ target: document.body, props });
  });
</script>

Import all #

Use `import * as Icon from 'svelte-bootstrap-svg-icons`.

<script>
  import * as Icon from 'svelte-bootstrap-svg-icons';
</script>

<Icon.Activity />
<Icon.Activity size="30" />