Skip to content

Commit

Permalink
Fix incorrect name
Browse files Browse the repository at this point in the history
  • Loading branch information
Studio384 committed Sep 24, 2021
1 parent a5d82e3 commit 53a2ebf
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions docs/fonts/Valkyrie.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@font-face {
font-family: "Valkyrie";
src: url("./Valkyrie.ttf?11a77dcfc07fd5ea4b57cb0067be680b") format("truetype"),
url("./Valkyrie.woff?11a77dcfc07fd5ea4b57cb0067be680b") format("woff"),
url("./Valkyrie.woff2?11a77dcfc07fd5ea4b57cb0067be680b") format("woff2"),
url("./Valkyrie.eot?11a77dcfc07fd5ea4b57cb0067be680b#iefix") format("embedded-opentype");
src: url("./Valkyrie.ttf?970e2943c2b05124f502e517598204ff") format("truetype"),
url("./Valkyrie.woff?970e2943c2b05124f502e517598204ff") format("woff"),
url("./Valkyrie.woff2?970e2943c2b05124f502e517598204ff") format("woff2"),
url("./Valkyrie.eot?970e2943c2b05124f502e517598204ff#iefix") format("embedded-opentype");
}

.vi {
Expand Down Expand Up @@ -87,7 +87,7 @@ url("./Valkyrie.eot?11a77dcfc07fd5ea4b57cb0067be680b#iefix") format("embedded-op
.vi.vi-arrow-up:before {
content: "\f117";
}
.vi.vi-astrisk:before {
.vi.vi-asterisk:before {
content: "\f118";
}
.vi.vi-at:before {
Expand Down
Binary file modified docs/fonts/Valkyrie.eot
Binary file not shown.
10 changes: 5 additions & 5 deletions docs/fonts/Valkyrie.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@font-face {
font-family: "Valkyrie";
src: url("./Valkyrie.ttf?11a77dcfc07fd5ea4b57cb0067be680b") format("truetype"),
url("./Valkyrie.woff?11a77dcfc07fd5ea4b57cb0067be680b") format("woff"),
url("./Valkyrie.woff2?11a77dcfc07fd5ea4b57cb0067be680b") format("woff2"),
url("./Valkyrie.eot?11a77dcfc07fd5ea4b57cb0067be680b#iefix") format("embedded-opentype");
src: url("./Valkyrie.ttf?970e2943c2b05124f502e517598204ff") format("truetype"),
url("./Valkyrie.woff?970e2943c2b05124f502e517598204ff") format("woff"),
url("./Valkyrie.woff2?970e2943c2b05124f502e517598204ff") format("woff2"),
url("./Valkyrie.eot?970e2943c2b05124f502e517598204ff#iefix") format("embedded-opentype");
}

.vi {
Expand Down Expand Up @@ -87,7 +87,7 @@ url("./Valkyrie.eot?11a77dcfc07fd5ea4b57cb0067be680b#iefix") format("embedded-op
.vi.vi-arrow-up:before {
content: "\f117";
}
.vi.vi-astrisk:before {
.vi.vi-asterisk:before {
content: "\f118";
}
.vi.vi-at:before {
Expand Down
Binary file modified docs/fonts/Valkyrie.ttf
Binary file not shown.
Binary file modified docs/fonts/Valkyrie.woff
Binary file not shown.
Binary file modified docs/fonts/Valkyrie.woff2
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,10 @@ <h1 class="display-4 m-0"><i class="vi vi-valkyrie"></i> Valkyrie</h1>

<div class="preview">
<span class="inner">
<i class="vi vi-astrisk"></i>
<i class="vi vi-asterisk"></i>
</span>
<br>
<span class='label'>astrisk</span>
<span class='label'>asterisk</span>
</div>


Expand Down
File renamed without changes
8 changes: 4 additions & 4 deletions src/Valkyrie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ export const viArrowUp: {
name: 'arrow_up',
data: `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 16"><path fill-rule="evenodd" d="M10.75 3.87v10.44a.75.75 0 01-1.5 0V3.87l-3.69 3.7A.75.75 0 014.5 6.5l4.8-4.8a1 1 0 011.4 0l4.8 4.8a.75.75 0 11-1.06 1.06l-3.69-3.69z"/></svg>`
};
export const viAstrisk: {
name: 'astrisk';
export const viAsterisk: {
name: 'asterisk';
data: string;
} = {
name: 'astrisk',
name: 'asterisk',
data: `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 16"><path d="M10 15a.75.75 0 01-.75-.75V9.3l-4.29 2.47a.75.75 0 01-.75-1.3L8.5 8 4.21 5.52a.75.75 0 11.75-1.3L9.25 6.7V1.75a.75.75 0 011.5 0V6.7l4.29-2.47a.75.75 0 01.75 1.3L11.5 8l4.29 2.48a.75.75 0 11-.75 1.3L10.75 9.3v4.95c0 .41-.34.75-.75.75z"/></svg>`
};
export const viAt: {
Expand Down Expand Up @@ -1353,7 +1353,7 @@ export type Valkyrie =
| 'arrow_up_to_line'
| 'arrow_up_wide_short'
| 'arrow_up'
| 'astrisk'
| 'asterisk'
| 'at'
| 'backward'
| 'bars'
Expand Down

0 comments on commit 53a2ebf

Please sign in to comment.