-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import {JSX} from "solid-js"; | ||
|
||
export default function Globe(props: JSX.SvgSVGAttributes<SVGSVGElement>) { | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" {...props}>{/* Font Awesome Pro 6.0.0-alpha2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) */} | ||
<path d="M256 16C123.451 16 16 123.451 16 256S123.451 496 256 496S496 388.549 496 256S388.549 16 256 16ZM422.021 160H373.279C366.889 132.594 357.889 107.824 346.803 86.898C378.156 103.803 404.168 129.246 422.021 160ZM336 256C336 272.984 334.705 288.818 332.824 304H179.176C177.295 288.818 176 272.984 176 256S177.295 223.182 179.176 208H332.824C334.705 223.182 336 239.016 336 256ZM256 448C234.215 448 205.129 411.58 188.717 352H323.283C306.871 411.58 277.785 448 256 448ZM188.717 160C205.129 100.42 234.215 64 256 64S306.871 100.42 323.283 160H188.717ZM165.197 86.898C154.111 107.824 145.111 132.594 138.721 160H89.979C107.832 129.246 133.844 103.803 165.197 86.898ZM70.318 208H130.57C128.891 223.512 128 239.561 128 256S128.891 288.488 130.57 304H70.318C66.34 288.627 64 272.6 64 256S66.34 223.373 70.318 208ZM89.979 352H138.721C145.111 379.406 154.111 404.176 165.197 425.102C133.844 408.197 107.832 382.754 89.979 352ZM346.803 425.102C357.889 404.176 366.889 379.406 373.279 352H422.021C404.168 382.754 378.156 408.197 346.803 425.102ZM441.682 304H381.43C383.109 288.488 384 272.439 384 256S383.109 223.512 381.43 208H441.682C445.66 223.373 448 239.4 448 256S445.66 288.627 441.682 304Z"/> | ||
</svg> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import Header from "../../components/ui/Header"; | ||
|
||
export default function Locale() { | ||
return ( | ||
<div> | ||
<Header>Language</Header> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters