svelte-octicons 17.6.0 → 17.7.0

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 CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [17.7.0](https://github.com/metonym/svelte-octicons/releases/tag/v17.7.0) - 2022-07-28
9
+
10
+ - upgrade `@primer/octicons` to v17.4.0 (net +8 icons)
11
+
8
12
  ## [17.6.0](https://github.com/metonym/svelte-octicons/releases/tag/v17.6.0) - 2022-06-06
9
13
 
10
14
  - upgrade `@primer/octicons` to v17.3.0 (net +7 icons)
package/README.md CHANGED
@@ -16,21 +16,14 @@ Try it in the [Svelte REPL](https://svelte.dev/repl/dce762f9a93c4e56b3ddde749cb1
16
16
 
17
17
  ## Installation
18
18
 
19
- **Yarn**
20
-
21
- ```bash
19
+ ```sh
20
+ # Yarn
22
21
  yarn add -D svelte-octicons
23
- ```
24
-
25
- **NPM**
26
22
 
27
- ```bash
23
+ # npm
28
24
  npm i -D svelte-octicons
29
- ```
30
-
31
- **pnpm**
32
25
 
33
- ```bash
26
+ # pnpm
34
27
  pnpm i -D svelte-octicons
35
28
  ```
36
29
 
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-cache={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M2.5 5.724c.241.15.503.286.779.407C4.525 6.68 6.195 7 8 7c1.805 0 3.475-.32 4.722-.869.622-.274 1.172-.62 1.578-1.04.408-.426.7-.965.7-1.591s-.292-1.165-.7-1.59c-.406-.422-.956-.767-1.579-1.041C11.476.32 9.806 0 8 0 6.195 0 4.525.32 3.279.869c-.623.274-1.173.62-1.579 1.04-.408.426-.7.965-.7 1.591v9c0 .626.292 1.165.7 1.59.406.422.956.767 1.579 1.041C4.525 15.68 6.195 16 8 16c.45 0 .89-.02 1.317-.058a.75.75 0 10-.134-1.494c-.381.034-.777.052-1.183.052-1.647 0-3.102-.295-4.117-.742-.51-.224-.874-.47-1.101-.707-.224-.233-.282-.418-.282-.551v-2.276c.164.102.334.196.507.28 1.102.543 2.582.89 4.204.975a.75.75 0 00.078-1.498c-1.476-.077-2.746-.392-3.62-.822C2.738 8.7 2.5 8.248 2.5 8V5.724zm0-2.224c0-.133.058-.318.282-.55.227-.237.592-.484 1.1-.708C4.899 1.795 6.354 1.5 8 1.5c1.647 0 3.102.295 4.117.742.51.224.874.47 1.101.707.224.233.282.418.282.551 0 .133-.058.318-.282.55-.227.237-.592.484-1.1.708C11.101 5.205 9.646 5.5 8 5.5c-1.647 0-3.102-.295-4.117-.742-.51-.224-.874-.47-1.101-.707-.224-.233-.282-.418-.282-.551z"/><path d="M14.49 7.582a.375.375 0 00-.66-.313l-3.625 4.625a.375.375 0 00.295.606h2.127l-.619 2.922a.375.375 0 00.666.304l3.125-4.125A.375.375 0 0015.5 11h-1.778l.769-3.418z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface Cache16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class Cache16 extends SvelteComponentTyped<
8
+ Cache16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-checkbox={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M2.5 2.75a.25.25 0 01.25-.25h10.5a.25.25 0 01.25.25v10.5a.25.25 0 01-.25.25H2.75a.25.25 0 01-.25-.25V2.75zM2.75 1A1.75 1.75 0 001 2.75v10.5c0 .966.784 1.75 1.75 1.75h10.5A1.75 1.75 0 0015 13.25V2.75A1.75 1.75 0 0013.25 1H2.75zm9.03 5.28a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface Checkbox16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class Checkbox16 extends SvelteComponentTyped<
8
+ Checkbox16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-checkbox={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path d="M17.28 9.28a.75.75 0 00-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0l6.5-6.5z"/><path fill-rule="evenodd" d="M3.75 2A1.75 1.75 0 002 3.75v16.5c0 .966.784 1.75 1.75 1.75h16.5A1.75 1.75 0 0022 20.25V3.75A1.75 1.75 0 0020.25 2H3.75zM3.5 3.75a.25.25 0 01.25-.25h16.5a.25.25 0 01.25.25v16.5a.25.25 0 01-.25.25H3.75a.25.25 0 01-.25-.25V3.75z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface Checkbox24Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class Checkbox24 extends SvelteComponentTyped<
8
+ Checkbox24Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-command-palette={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path d="M6.354 8.04l-4.773 4.773a.75.75 0 101.061 1.06L7.945 8.57a.75.75 0 000-1.06L2.642 2.206a.75.75 0 00-1.06 1.061L6.353 8.04zM8.75 11.5a.75.75 0 000 1.5h5.5a.75.75 0 000-1.5h-5.5z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface CommandPalette16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class CommandPalette16 extends SvelteComponentTyped<
8
+ CommandPalette16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-command-palette={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path d="M3.045 18.894L9.94 12 3.045 5.106a.75.75 0 011.06-1.061l7.425 7.425a.75.75 0 010 1.06l-7.424 7.425a.75.75 0 01-1.061-1.06zm8.205.606a.75.75 0 000 1.5h9.5a.75.75 0 000-1.5h-9.5z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface CommandPalette24Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class CommandPalette24 extends SvelteComponentTyped<
8
+ CommandPalette24Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-git-merge-queue={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path d="M3.75 4.5a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z"/><path fill-rule="evenodd" d="M3 7.75a.75.75 0 011.5 0v2.878a2.251 2.251 0 11-1.5 0V7.75zm.75 5.75a.75.75 0 100-1.5.75.75 0 000 1.5z"/><path d="M8.75 5.75a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0z"/><path fill-rule="evenodd" d="M14.5 8.25a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0zm-1.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface GitMergeQueue16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class GitMergeQueue16 extends SvelteComponentTyped<
8
+ GitMergeQueue16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-paperclip={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M12.212 3.02a1.75 1.75 0 00-2.478.003l-5.83 5.83a3.007 3.007 0 00-.88 2.127c0 .795.315 1.551.88 2.116.567.567 1.333.89 2.126.89.79 0 1.548-.321 2.116-.89l5.48-5.48a.75.75 0 011.061 1.06l-5.48 5.48a4.494 4.494 0 01-3.177 1.33c-1.2 0-2.345-.487-3.187-1.33a4.485 4.485 0 01-1.32-3.177c0-1.195.475-2.341 1.32-3.186l5.83-5.83a3.25 3.25 0 015.553 2.297c0 .863-.343 1.691-.953 2.301L7.439 12.39a2.01 2.01 0 01-1.416.593 2 2 0 01-1.412-.593 1.991 1.991 0 010-2.828l5.48-5.48a.75.75 0 011.06 1.06l-5.48 5.48a.491.491 0 000 .707.5.5 0 00.352.154.509.509 0 00.356-.154l5.833-5.827a1.755 1.755 0 000-2.481z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface Paperclip16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class Paperclip16 extends SvelteComponentTyped<
8
+ Paperclip16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-paperclip={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path fill-rule="evenodd" d="M19.187 3.588a2.75 2.75 0 00-3.889 0L5.575 13.31a4.5 4.5 0 106.364 6.364l8.662-8.662a.75.75 0 011.061 1.06L13 20.735a6 6 0 01-8.485-8.485l9.723-9.723a4.25 4.25 0 116.01 6.01l-9.193 9.193a2.638 2.638 0 01-1.858.779 2.626 2.626 0 01-1.854-.779c-.196-.196-.338-.47-.43-.726a2.825 2.825 0 01-.168-.946c0-.7.284-1.373.775-1.864l8.132-8.131a.75.75 0 111.06 1.06l-8.131 8.132a1.144 1.144 0 00-.336.803 1.326 1.326 0 00.146.587c.01.018.018.028.02.032.22.215.501.332.786.332.29 0 .58-.121.798-.34l9.192-9.192a2.75 2.75 0 000-3.89z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface Paperclip24Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class Paperclip24 extends SvelteComponentTyped<
8
+ Paperclip24Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -1 +1 @@
1
- <svg class:octicon={true} class:octicon-table={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v3.585a.746.746 0 010 .83v8.085A1.75 1.75 0 0114.25 16H6.309a.748.748 0 01-1.118 0H1.75A1.75 1.75 0 010 14.25V6.165a.746.746 0 010-.83V1.75zM1.5 6.5v7.75c0 .138.112.25.25.25H5v-8H1.5zM5 5H1.5V1.75a.25.25 0 01.25-.25H5V5zm1.5 1.5v8h7.75a.25.25 0 00.25-.25V6.5h-8zm8-1.5h-8V1.5h7.75a.25.25 0 01.25.25V5z"/></svg>
1
+ <svg class:octicon={true} class:octicon-table={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0114.25 16H1.75A1.75 1.75 0 010 14.25V1.75zM1.5 6.5v7.75c0 .138.112.25.25.25H5v-8H1.5zM5 5H1.5V1.75a.25.25 0 01.25-.25H5V5zm1.5 1.5v8h7.75a.25.25 0 00.25-.25V6.5h-8zm8-1.5h-8V1.5h7.75a.25.25 0 01.25.25V5z"/></svg>
@@ -1 +1 @@
1
- <svg class:octicon={true} class:octicon-tasklist={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M2.5 2.75a.25.25 0 01.25-.25h10.5a.25.25 0 01.25.25v10.5a.25.25 0 01-.25.25H2.75a.25.25 0 01-.25-.25V2.75zM2.75 1A1.75 1.75 0 001 2.75v10.5c0 .966.784 1.75 1.75 1.75h10.5A1.75 1.75 0 0015 13.25V2.75A1.75 1.75 0 0013.25 1H2.75zm9.03 5.28a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z"/></svg>
1
+ <svg class:octicon={true} class:octicon-tasklist={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M2.5 3.5v3h3v-3h-3zM2 2a1 1 0 00-1 1v4a1 1 0 001 1h4a1 1 0 001-1V3a1 1 0 00-1-1H2zm4.655 8.595a.75.75 0 010 1.06L4.03 14.28a.75.75 0 01-1.06 0l-1.5-1.5a.75.75 0 111.06-1.06l.97.97 2.095-2.095a.75.75 0 011.06 0zM9.75 2.5a.75.75 0 000 1.5h5.5a.75.75 0 000-1.5h-5.5zm0 5a.75.75 0 000 1.5h5.5a.75.75 0 000-1.5h-5.5zm0 5a.75.75 0 000 1.5h5.5a.75.75 0 000-1.5h-5.5z"/></svg>
@@ -1 +1 @@
1
- <svg class:octicon={true} class:octicon-tasklist={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path d="M17.28 9.28a.75.75 0 00-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0l6.5-6.5z"/><path fill-rule="evenodd" d="M3.75 2A1.75 1.75 0 002 3.75v16.5c0 .966.784 1.75 1.75 1.75h16.5A1.75 1.75 0 0022 20.25V3.75A1.75 1.75 0 0020.25 2H3.75zM3.5 3.75a.25.25 0 01.25-.25h16.5a.25.25 0 01.25.25v16.5a.25.25 0 01-.25.25H3.75a.25.25 0 01-.25-.25V3.75z"/></svg>
1
+ <svg class:octicon={true} class:octicon-tasklist={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path fill-rule="evenodd" d="M3 6a1 1 0 011-1h5a1 1 0 011 1v5a1 1 0 01-1 1H4a1 1 0 01-1-1V6zm1.5 4.5v-4h4v4h-4z"/><path d="M12.75 5.5a.75.75 0 000 1.5h7.5a.75.75 0 000-1.5h-7.5zm0 6a.75.75 0 000 1.5h7.5a.75.75 0 000-1.5h-7.5zm0 6a.75.75 0 000 1.5h7.5a.75.75 0 000-1.5h-7.5zm-2.97-2.53a.75.75 0 010 1.06l-3.5 3.5a.75.75 0 01-1.06 0l-2-2a.75.75 0 111.06-1.06l1.47 1.47 2.97-2.97a.75.75 0 011.06 0z"/></svg>
package/lib/index.d.ts CHANGED
@@ -49,6 +49,7 @@ export { default as Browser16 } from "./Browser16.svelte";
49
49
  export { default as Browser24 } from "./Browser24.svelte";
50
50
  export { default as Bug16 } from "./Bug16.svelte";
51
51
  export { default as Bug24 } from "./Bug24.svelte";
52
+ export { default as Cache16 } from "./Cache16.svelte";
52
53
  export { default as Calendar16 } from "./Calendar16.svelte";
53
54
  export { default as Calendar24 } from "./Calendar24.svelte";
54
55
  export { default as Check16 } from "./Check16.svelte";
@@ -58,6 +59,8 @@ export { default as CheckCircle24 } from "./CheckCircle24.svelte";
58
59
  export { default as CheckCircleFill12 } from "./CheckCircleFill12.svelte";
59
60
  export { default as CheckCircleFill16 } from "./CheckCircleFill16.svelte";
60
61
  export { default as CheckCircleFill24 } from "./CheckCircleFill24.svelte";
62
+ export { default as Checkbox16 } from "./Checkbox16.svelte";
63
+ export { default as Checkbox24 } from "./Checkbox24.svelte";
61
64
  export { default as Checklist16 } from "./Checklist16.svelte";
62
65
  export { default as Checklist24 } from "./Checklist24.svelte";
63
66
  export { default as ChevronDown16 } from "./ChevronDown16.svelte";
@@ -94,6 +97,8 @@ export { default as Codespaces16 } from "./Codespaces16.svelte";
94
97
  export { default as Codespaces24 } from "./Codespaces24.svelte";
95
98
  export { default as Columns16 } from "./Columns16.svelte";
96
99
  export { default as Columns24 } from "./Columns24.svelte";
100
+ export { default as CommandPalette16 } from "./CommandPalette16.svelte";
101
+ export { default as CommandPalette24 } from "./CommandPalette24.svelte";
97
102
  export { default as Comment16 } from "./Comment16.svelte";
98
103
  export { default as Comment24 } from "./Comment24.svelte";
99
104
  export { default as CommentDiscussion16 } from "./CommentDiscussion16.svelte";
@@ -208,6 +213,7 @@ export { default as GitCompare16 } from "./GitCompare16.svelte";
208
213
  export { default as GitCompare24 } from "./GitCompare24.svelte";
209
214
  export { default as GitMerge16 } from "./GitMerge16.svelte";
210
215
  export { default as GitMerge24 } from "./GitMerge24.svelte";
216
+ export { default as GitMergeQueue16 } from "./GitMergeQueue16.svelte";
211
217
  export { default as GitPullRequest16 } from "./GitPullRequest16.svelte";
212
218
  export { default as GitPullRequest24 } from "./GitPullRequest24.svelte";
213
219
  export { default as GitPullRequestClosed16 } from "./GitPullRequestClosed16.svelte";
@@ -325,6 +331,8 @@ export { default as PackageDependents24 } from "./PackageDependents24.svelte";
325
331
  export { default as Paintbrush16 } from "./Paintbrush16.svelte";
326
332
  export { default as PaperAirplane16 } from "./PaperAirplane16.svelte";
327
333
  export { default as PaperAirplane24 } from "./PaperAirplane24.svelte";
334
+ export { default as Paperclip16 } from "./Paperclip16.svelte";
335
+ export { default as Paperclip24 } from "./Paperclip24.svelte";
328
336
  export { default as Paste16 } from "./Paste16.svelte";
329
337
  export { default as Paste24 } from "./Paste24.svelte";
330
338
  export { default as Pencil16 } from "./Pencil16.svelte";
package/lib/index.js CHANGED
@@ -49,6 +49,7 @@ export { default as Browser16 } from "./Browser16.svelte";
49
49
  export { default as Browser24 } from "./Browser24.svelte";
50
50
  export { default as Bug16 } from "./Bug16.svelte";
51
51
  export { default as Bug24 } from "./Bug24.svelte";
52
+ export { default as Cache16 } from "./Cache16.svelte";
52
53
  export { default as Calendar16 } from "./Calendar16.svelte";
53
54
  export { default as Calendar24 } from "./Calendar24.svelte";
54
55
  export { default as Check16 } from "./Check16.svelte";
@@ -58,6 +59,8 @@ export { default as CheckCircle24 } from "./CheckCircle24.svelte";
58
59
  export { default as CheckCircleFill12 } from "./CheckCircleFill12.svelte";
59
60
  export { default as CheckCircleFill16 } from "./CheckCircleFill16.svelte";
60
61
  export { default as CheckCircleFill24 } from "./CheckCircleFill24.svelte";
62
+ export { default as Checkbox16 } from "./Checkbox16.svelte";
63
+ export { default as Checkbox24 } from "./Checkbox24.svelte";
61
64
  export { default as Checklist16 } from "./Checklist16.svelte";
62
65
  export { default as Checklist24 } from "./Checklist24.svelte";
63
66
  export { default as ChevronDown16 } from "./ChevronDown16.svelte";
@@ -94,6 +97,8 @@ export { default as Codespaces16 } from "./Codespaces16.svelte";
94
97
  export { default as Codespaces24 } from "./Codespaces24.svelte";
95
98
  export { default as Columns16 } from "./Columns16.svelte";
96
99
  export { default as Columns24 } from "./Columns24.svelte";
100
+ export { default as CommandPalette16 } from "./CommandPalette16.svelte";
101
+ export { default as CommandPalette24 } from "./CommandPalette24.svelte";
97
102
  export { default as Comment16 } from "./Comment16.svelte";
98
103
  export { default as Comment24 } from "./Comment24.svelte";
99
104
  export { default as CommentDiscussion16 } from "./CommentDiscussion16.svelte";
@@ -208,6 +213,7 @@ export { default as GitCompare16 } from "./GitCompare16.svelte";
208
213
  export { default as GitCompare24 } from "./GitCompare24.svelte";
209
214
  export { default as GitMerge16 } from "./GitMerge16.svelte";
210
215
  export { default as GitMerge24 } from "./GitMerge24.svelte";
216
+ export { default as GitMergeQueue16 } from "./GitMergeQueue16.svelte";
211
217
  export { default as GitPullRequest16 } from "./GitPullRequest16.svelte";
212
218
  export { default as GitPullRequest24 } from "./GitPullRequest24.svelte";
213
219
  export { default as GitPullRequestClosed16 } from "./GitPullRequestClosed16.svelte";
@@ -325,6 +331,8 @@ export { default as PackageDependents24 } from "./PackageDependents24.svelte";
325
331
  export { default as Paintbrush16 } from "./Paintbrush16.svelte";
326
332
  export { default as PaperAirplane16 } from "./PaperAirplane16.svelte";
327
333
  export { default as PaperAirplane24 } from "./PaperAirplane24.svelte";
334
+ export { default as Paperclip16 } from "./Paperclip16.svelte";
335
+ export { default as Paperclip24 } from "./Paperclip24.svelte";
328
336
  export { default as Paste16 } from "./Paste16.svelte";
329
337
  export { default as Paste24 } from "./Paste24.svelte";
330
338
  export { default as Pencil16 } from "./Pencil16.svelte";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-octicons",
3
- "version": "17.6.0",
3
+ "version": "17.7.0",
4
4
  "license": "MIT",
5
5
  "description": "GitHub Octicons as Svelte components",
6
6
  "author": "Eric Liu (https://github.com/metonym)",
@@ -12,16 +12,14 @@
12
12
  "dev": "rollup -cw",
13
13
  "predeploy": "rollup -c",
14
14
  "deploy": "gh-pages -d dist",
15
- "prepack": "node build",
16
- "test": "svelte-check --workspace test"
15
+ "prepack": "node build"
17
16
  },
18
17
  "devDependencies": {
19
- "@primer/octicons": "17.3.0",
18
+ "@primer/octicons": "17.4.0",
20
19
  "gh-pages": "^4.0.0",
21
- "svelte": "^3.48.0",
22
- "svelte-check": "^2.7.2",
20
+ "svelte": "^3.49.0",
23
21
  "svelte-readme": "^3.6.3",
24
- "svelvg": "^0.10.1"
22
+ "svelvg": "^0.11.2"
25
23
  },
26
24
  "repository": {
27
25
  "type": "git",