Skip to content

Commit 27c11c2

Browse files
authored
Merge pull request #207 from vuejs-jp/enhance/facebook-icons-etc
add facebook icon
2 parents bc678be + d9a5993 commit 27c11c2

File tree

12 files changed

+94
-43
lines changed

12 files changed

+94
-43
lines changed

apps/web/app/components/GlobalHeader.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ const toggleMenu = () => {
4242
<a
4343
href=""
4444
class="navigation-mobile-toggle"
45-
name="Menu"
45+
name="menu"
4646
:class="{ 'isOpened': showMenu }"
4747
@click.prevent="toggleMenu"
4848
>
4949
<span /><span /><span />
5050
</a>
51-
<!-- <VFIcon name="Menu" color="vue-blue" can-hover @click="toggleMenu" /> -->
51+
<!-- <VFIcon name="menu" color="vue-blue" can-hover @click="toggleMenu" /> -->
5252
</div>
5353
<!-- hamburger-menu -->
5454
<Transition name="slide-down">

apps/web/app/components/TopPageSection.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ const { locale } = useI18n()
2929
class="link-button"
3030
background-color="vue-green/200"
3131
color="white"
32-
icon-name="x22"
32+
icon-name="x"
3333
href="https://twitter.com/vuefes"
3434
>@vuefes</VFLinkButton
3535
>
3636
<VFLinkButton
3737
class="link-button"
3838
background-color="white"
3939
color="vue-blue"
40-
icon-name="note22"
40+
icon-name="note"
4141
href="https://note.com/vuejs_jp/m/mb35849fee631"
4242
>{{ $t('top_page.note') }}
4343
</VFLinkButton>

packages/model/lib/icon.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
export type IconName =
22
| 'x'
3-
| 'x22'
43
| 'x24'
4+
| 'x40'
5+
| 'Facebook40'
56
| 'note'
6-
| 'note22'
77
| 'YouTube'
88
| 'GitHub'
99
| 'GitHub24'
1010
| 'GitHub32'
1111
| 'Google24'
1212
| 'Google32'
13+
| 'menu'
1314
| 'close'
14-
| 'alert32'
15+
| 'external'
16+
| 'alert'
Lines changed: 5 additions & 0 deletions
Loading
Lines changed: 11 additions & 0 deletions
Loading

packages/ui/assets/icon/note_22_icon.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/ui/assets/icon/note_icon.svg

Lines changed: 2 additions & 2 deletions
Loading

packages/ui/assets/icon/x_22_icon.svg

Lines changed: 0 additions & 10 deletions
This file was deleted.

packages/ui/assets/icon/x_40_icon.svg

Lines changed: 3 additions & 0 deletions
Loading

packages/ui/assets/icon/x_icon.svg

Lines changed: 5 additions & 5 deletions
Loading

0 commit comments

Comments
 (0)