1
0
Fork 0

wip(org): Added translation support and locale picker

This commit is contained in:
Joost De Cock 2022-05-29 11:58:48 +02:00
parent 0ee9b36451
commit f1c291491f
11 changed files with 281 additions and 27 deletions

View file

@ -0,0 +1,8 @@
const Down = ({ className="h-6 w-6" }) => (
<svg xmlns="http://www.w3.org/2000/svg" className={className} fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
)
export default Down

View file

@ -1,6 +1,6 @@
/* Sourced from heroicons.com - Thanks guys! */
const Left = () => (
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
const Left = ({ className="h-6 w-6" }) => (
<svg xmlns="http://www.w3.org/2000/svg" className={className} fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 19l-7-7 7-7" />
</svg>
)