Skip to content

Commit

Permalink
Merge pull request #284 from Keness/main
Browse files Browse the repository at this point in the history
言語切り替えのアイコンを日本語圏以外の人でも直感的にわかるアイコンへ切り替えた。
  • Loading branch information
yu23ki14 authored Jul 3, 2023
2 parents 841bd59 + 2c3c611 commit bc45663
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/atoms/LocaleSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChevronDownIcon } from "@chakra-ui/icons";
import { Button, Menu, MenuButton, MenuItem, MenuList } from "@chakra-ui/react";
import { useRouter } from "next/router";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faLanguage } from "@fortawesome/free-solid-svg-icons";
import { faGlobe } from "@fortawesome/free-solid-svg-icons";

const LocaleSelector = () => {
const router = useRouter();
Expand All @@ -11,7 +11,7 @@ const LocaleSelector = () => {
<>
<Menu>
<MenuButton as={Button} rightIcon={<ChevronDownIcon />}>
<FontAwesomeIcon icon={faLanguage} />
<FontAwesomeIcon icon={faGlobe} />
</MenuButton>
<MenuList>
{otherLocales.map((locale) => {
Expand Down

0 comments on commit bc45663

Please sign in to comment.