mdi-svelte-ts
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Material design icons for Svelte (typescript support).

This repo is using isiration from the npm package mdi-svelte by AlexxNB. This repo hasn't received an update since 29 Sep 2020. Svelte has been in heavy development since then. Furthermore, typescript is a must nowaday for developing a Svelte library. This was the main reason to create this repo.

This library is a simple wrapper for @mdi/js and thus supports all icons within that library. For more info can be found on their repo mdi/js. This active repo keeps all icons from material design icons in a javascript format.

This component library is stable. However I'am planning to update this repo with more clear instruction on how to get started. For adding contrubutions take a look at mdi-svelte-ts/issues.

Getting started

First install mdi-svelte-ts including @mdi/js.

yarn add mdi-svelte-ts @mdi/js
# or
npm install mdi-svelte-ts @mdi/js

to use the icons in your component

<scrip lang="ts">
  import {mdiHeart} from "@mdi/js"
  import {Icon} from "mdi-svelte-ts"
</script>

<!-- Icon with width and height to be 2rem and spins 1 revolution per second -->
<Icon path={mdiHeart} size={2} spin={1}>

For Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

For Building

To create a production version of your app:

npm run build

Package Sidebar

Install

npm i mdi-svelte-ts

Weekly Downloads

14

Version

1.0.0

License

none

Unpacked Size

15.5 kB

Total Files

17

Last publish

Collaborators

  • abeldebruijn