svelte-remix 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/README.md +16 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.2](https://github.com/shinokada/svelte-remix-icons/compare/v0.1.1...v0.1.2) (2022-05-29)
|
|
6
|
+
|
|
5
7
|
### [0.1.1](https://github.com/shinokada/svelte-remix-icons/compare/v0.1.0...v0.1.1) (2022-05-29)
|
|
6
8
|
|
|
7
9
|
## 0.1.0 (2022-05-29)
|
package/README.md
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
# Svelte-Remix
|
|
1
|
+
# Svelte-Remix
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/svelte-remix)
|
|
4
|
+
[](https://github.com/shinokada/svelte-remix/blob/main/LICENSE)
|
|
5
5
|
|
|
6
|
-
2270+ SVG file icon components for Svelte.
|
|
6
|
+
2270+ SVG file icon components for Svelte. Svelte-Remix support major CSS frameworks using the `class` props.
|
|
7
7
|
|
|
8
8
|
<p align="center">
|
|
9
|
-
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix
|
|
10
|
-
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix
|
|
11
|
-
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix
|
|
12
|
-
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix
|
|
13
|
-
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix
|
|
9
|
+
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix/main/static/images/remix-icons1.webp" />
|
|
10
|
+
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix/main/static/images/remix-icons2.webp" />
|
|
11
|
+
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix/main/static/images/remix-icons3.webp" />
|
|
12
|
+
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix/main/static/images/remix-icons4.webp" />
|
|
13
|
+
<img width="400" src="https://raw.githubusercontent.com/shinokada/svelte-remix/main/static/images/remix-icons5.webp" />
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
## Icon name list
|
|
17
17
|
|
|
18
|
-
[Icon list](https://github.com/shinokada/svelte-remix
|
|
18
|
+
[Icon list](https://github.com/shinokada/svelte-remix/blob/main/icon-list.md)
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
21
|
|
|
22
22
|
```sh
|
|
23
|
-
npm i -D svelte-remix
|
|
23
|
+
npm i -D svelte-remix
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
## Usages
|
|
@@ -29,7 +29,7 @@ In a svelte file:
|
|
|
29
29
|
|
|
30
30
|
```html
|
|
31
31
|
<script>
|
|
32
|
-
import { Vite, Config, D3, Sublime, Svelte, VSCode, EJS } from 'svelte-remix
|
|
32
|
+
import { Vite, Config, D3, Sublime, Svelte, VSCode, EJS } from 'svelte-remix';
|
|
33
33
|
</script>
|
|
34
34
|
|
|
35
35
|
<Vite />
|
|
@@ -112,7 +112,7 @@ You can pass other attibutes as well.
|
|
|
112
112
|
|
|
113
113
|
```html
|
|
114
114
|
<script>
|
|
115
|
-
import { Svelte } from 'svelte-remix
|
|
115
|
+
import { Svelte } from 'svelte-remix';
|
|
116
116
|
</script>
|
|
117
117
|
|
|
118
118
|
<svelte:component this="{Svelte}" />
|
|
@@ -122,7 +122,7 @@ You can pass other attibutes as well.
|
|
|
122
122
|
|
|
123
123
|
```html
|
|
124
124
|
<script>
|
|
125
|
-
import { Svelte } from 'svelte-remix
|
|
125
|
+
import { Svelte } from 'svelte-remix';
|
|
126
126
|
import { onMount } from 'svelte';
|
|
127
127
|
const props = {
|
|
128
128
|
size: '50',
|
|
@@ -136,11 +136,11 @@ You can pass other attibutes as well.
|
|
|
136
136
|
|
|
137
137
|
## Import all
|
|
138
138
|
|
|
139
|
-
Use `import * as Icon from 'svelte-remix
|
|
139
|
+
Use `import * as Icon from 'svelte-remix`.
|
|
140
140
|
|
|
141
141
|
```html
|
|
142
142
|
<script>
|
|
143
|
-
import * as Icon from 'svelte-remix
|
|
143
|
+
import * as Icon from 'svelte-remix';
|
|
144
144
|
</script>
|
|
145
145
|
|
|
146
146
|
<Icon.Svelte />
|