Add menu, landing page

This commit is contained in:
Rory Healy 2023-05-13 14:49:49 +10:00
parent 7e9b89b20b
commit dae7c5337b
Signed by: roryhealy
GPG key ID: 0F9504EFDBBCD11D
35 changed files with 403 additions and 60 deletions

View file

@ -1,4 +1,6 @@
{ {
"singleQuote": true, "singleQuote": true,
"trailingComma": "none" "jsxSingleQuote": true,
"trailingComma": "none",
"printWidth": 120
} }

View file

@ -4,7 +4,7 @@ export const metadata = {
title: 'The Myrtle Tree', title: 'The Myrtle Tree',
description: 'A pitch for a game about sound and reliving memories', description: 'A pitch for a game about sound and reliving memories',
icons: { icons: {
icon: 'favicon.ico' icon: 'favicon.svg'
} }
}; };
@ -14,7 +14,7 @@ export default function RootLayout({
children: React.ReactNode; children: React.ReactNode;
}) { }) {
return ( return (
<html lang="en"> <html lang='en'>
<body>{children}</body> <body>{children}</body>
</html> </html>
); );

View file

@ -1,11 +1,12 @@
import React from 'react'; import React from 'react';
// import Headphones from '@/components/headphones'; import Header from '@/components/header';
// import Header from '@/components/header'; import Footer from '@/components/footer';
export default function Home() { export default function Home() {
return ( return (
<main className="bg-black w-screen h-screen"> <main className='bg-black w-screen h-screen'>
<p>Testing</p> <Header />
<Footer />
</main> </main>
); );
} }

View file

@ -1,5 +1,11 @@
import React from 'react'; import React from 'react';
import Menu from '@/components/menu';
export default function Footer() { export default function Footer() {
return <div></div>; return (
<footer className='fixed bottom-0 w-screen h-24 py-2 flex justify-around'>
<p>The Myrtle Tree - A pitch for a game about sound and reliving memories.</p>
<p className='text-right'>By Rory Healy.</p>
</footer>
);
} }

View file

@ -1,48 +1,10 @@
'use client';
import React from 'react'; import React from 'react';
import Image from 'next/image'; import Menu from '@/components/menu';
import DropdownMenu from '@radix-ui/react-dropdown-menu';
import { useState } from 'react';
function Menu() {
const darkMode = useState(true);
const menuItems = ['Source code on GitHub', 'Made by Rory Healy'];
return (
<DropdownMenu.Root>
<DropdownMenu.Trigger asChild>
<Image
src="images/menu.svg"
alt="Menu"
width={40}
height={40}
className="opacity-25 hover:opacity-75 ease-linear transition-opacity"
/>
</DropdownMenu.Trigger>
<DropdownMenu.Portal>
<DropdownMenu.Content className="bg-white w-64">
{menuItems.map((text, i) => (
<DropdownMenu.Item className="text-black" key={i}>
{text}
</DropdownMenu.Item>
))}
</DropdownMenu.Content>
</DropdownMenu.Portal>
</DropdownMenu.Root>
);
}
export default function Header() { export default function Header() {
return ( return (
<header className="flex flex-row-reverse mr-4 mt-2"> <header className='fixed top-0 w-screen h-24 pr-8 flex flex-row-reverse'>
<Menu /> <Menu />
{/* <Image
src='images/menu.svg'
alt='Menu'
width={40}
height={40}
className="opacity-25 hover:opacity-75 ease-linear transition-opacity"
/> */}
</header> </header>
); );
} }

View file

@ -5,8 +5,8 @@ export default function Headphones() {
return ( return (
<div> <div>
<Image <Image
src="images/headphones.svg" src='images/white/headphones.svg'
alt="Headphones image" alt='Headphones image'
width={100} width={100}
height={100} height={100}
/> />

79
components/menu.tsx Normal file
View file

@ -0,0 +1,79 @@
'use client';
import React from 'react';
import Image from 'next/image';
import * as DropdownMenu from '@radix-ui/react-dropdown-menu';
import { useState } from 'react';
enum Mode {
Light,
Dark
}
interface DisplayMode {
current: Mode,
text: string,
icon: string
}
const darkDisplayMode: DisplayMode = {
current: Mode.Dark,
text: 'Switch to light mode',
icon: 'images/white/sun.svg'
}
const lightDisplayMode: DisplayMode = {
current: Mode.Light,
text: 'Switch to dark mode',
icon: 'images/black/moon.svg'
}
export default function Menu() {
const [displayMode, setDisplayMode] = useState(darkDisplayMode);
const modeSwitch = () => {
if (displayMode.current === Mode.Dark) {
setDisplayMode(lightDisplayMode);
} else if (displayMode.current === Mode.Light) {
setDisplayMode(darkDisplayMode);
} else {
// Might not be necessary
throw new TypeError('Invalid displayMode set.');
}
};
return (
<DropdownMenu.Root>
<DropdownMenu.Trigger asChild>
<Image
src='images/white/menu.svg'
alt='Menu'
width={40}
height={40}
className='opacity-25 hover:opacity-75 ease-linear transition-opacity'
/>
</DropdownMenu.Trigger>
<DropdownMenu.Portal>
<DropdownMenu.Content className='p-1 mr-4 bg-neutral-950 w-60'>
<DropdownMenu.Item className='flex outline-none justify-between px-2 py-1 bg-neutral-900 cursor-pointer hover:bg-neutral-800' onClick={modeSwitch}>
<p className='text-lg text-white'>{displayMode.text}</p>
<Image src={displayMode.icon} height={20} width={20} alt='Sun' />
</DropdownMenu.Item>
<DropdownMenu.Item className='outline-none px-2 py-1 bg-neutral-900 cursor-pointer hover:bg-neutral-800'>
<a href='https://github.com/roryhealy/themyrtletree' className='flex justify-between'>
<p className='text-lg text-white'>View source on GitHub</p>
<Image src='images/white/github-logo.svg' height={20} width={20} alt='GitHub logo' />
</a>
</DropdownMenu.Item>
<DropdownMenu.Item className='flex outline-none justify-between px-2 py-1 mt-2 bg-neutral-900 cursor-default hover:bg-neutral-800'>
<p className='text-lg text-white'>Made by Rory Healy</p>
</DropdownMenu.Item>
</DropdownMenu.Content>
</DropdownMenu.Portal>
</DropdownMenu.Root>
);
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 KiB

4
public/favicon.svg Normal file
View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m7.4697 1.0508c0.17154 0.0839 0.28032 0.25819 0.28032 0.44915v12c0 0.191-0.10878 0.3653-0.28032 0.4492-0.17155 0.0839-0.37591 0.0627-0.52665-0.0545l-3.7217-2.8947h-1.7213c-0.82843 0-1.5-0.6716-1.5-1.5v-4c0-0.82842 0.67157-1.5 1.5-1.5h1.7213l3.7217-2.8947c0.15074-0.11724 0.3551-0.13838 0.52665-0.05448zm-0.71968 1.4715-3.0502 2.3724c-0.08777 0.06826-0.19578 0.10532-0.30697 0.10532h-1.8929c-0.27614 0-0.5 0.22386-0.5 0.5v4c0 0.27615 0.22386 0.5 0.5 0.5h1.8929c0.11119 0 0.2192 0.0371 0.30697 0.1053l3.0502 2.3724v-9.9554zm3.5284 1.3257c0.1839-0.12237 0.4322-0.07247 0.5546 0.11145 1.4228 2.1385 1.4228 4.9425 0 7.081-0.1224 0.1839-0.3707 0.2338-0.5546 0.1114-0.184-0.1223-0.2339-0.3706-0.1115-0.5546 1.2442-1.87 1.2442-4.3246 0-6.1947-0.1224-0.18393-0.0725-0.43223 0.1115-0.5546zm2.4001-2.4176c-0.1429-0.16854-0.3953-0.1894-0.5638-0.04658-0.1685 0.14281-0.1894 0.39522-0.0466 0.56376 2.7092 3.1973 2.7092 7.9075 0 11.105-0.1428 0.1685-0.1219 0.4209 0.0466 0.5637 0.1685 0.1429 0.4209 0.122 0.5638-0.0465 2.9621-3.4957 2.9621-8.6435 0-12.139z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,8 @@
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M7.49933 0.25C3.49635 0.25 0.25 3.49593 0.25 7.50024C0.25 10.703 2.32715 13.4206 5.2081 14.3797C5.57084 14.446 5.70302 14.2222 5.70302 14.0299C5.70302 13.8576 5.69679 13.4019 5.69323 12.797C3.67661 13.235 3.25112 11.825 3.25112 11.825C2.92132 10.9874 2.44599 10.7644 2.44599 10.7644C1.78773 10.3149 2.49584 10.3238 2.49584 10.3238C3.22353 10.375 3.60629 11.0711 3.60629 11.0711C4.25298 12.1788 5.30335 11.8588 5.71638 11.6732C5.78225 11.205 5.96962 10.8854 6.17658 10.7043C4.56675 10.5209 2.87415 9.89918 2.87415 7.12104C2.87415 6.32925 3.15677 5.68257 3.62053 5.17563C3.54576 4.99226 3.29697 4.25521 3.69174 3.25691C3.69174 3.25691 4.30015 3.06196 5.68522 3.99973C6.26337 3.83906 6.8838 3.75895 7.50022 3.75583C8.1162 3.75895 8.73619 3.83906 9.31523 3.99973C10.6994 3.06196 11.3069 3.25691 11.3069 3.25691C11.7026 4.25521 11.4538 4.99226 11.3795 5.17563C11.8441 5.68257 12.1245 6.32925 12.1245 7.12104C12.1245 9.9063 10.4292 10.5192 8.81452 10.6985C9.07444 10.9224 9.30633 11.3648 9.30633 12.0413C9.30633 13.0102 9.29742 13.7922 9.29742 14.0299C9.29742 14.2239 9.42828 14.4496 9.79591 14.3788C12.6746 13.4179 14.75 10.7025 14.75 7.50024C14.75 3.49593 11.5036 0.25 7.49933 0.25Z"
fill="currentColor"
/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,225 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="15"
height="15"
version="1.1"
viewBox="0 0 11.25 11.25"
id="svg163"
sodipodi:docname="headphones.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview165"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="pt"
showgrid="false"
inkscape:zoom="26.19163"
inkscape:cx="9.0296024"
inkscape:cy="9.6977548"
inkscape:window-width="1440"
inkscape:window-height="849"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg163" />
<defs
id="defs77">
<symbol
id="y"
overflow="visible">
<path
d="m 18.766,-1.125 c -0.96875,0.5 -1.9805,0.875 -3.0312,1.125 -1.043,0.25781 -2.1367,0.39062 -3.2812,0.39062 -3.3984,0 -6.0898,-0.94531 -8.0781,-2.8438 -1.9922,-1.9062 -2.9844,-4.4844 -2.9844,-7.7344 0,-3.2578 0.99219,-5.8359 2.9844,-7.7344 1.9883,-1.9062 4.6797,-2.8594 8.0781,-2.8594 1.1445,0 2.2383,0.13281 3.2812,0.39062 1.0508,0.25 2.0625,0.625 3.0312,1.125 v 4.2188 c -0.98047,-0.65625 -1.9453,-1.1406 -2.8906,-1.4531 -0.94922,-0.3125 -1.9492,-0.46875 -3,-0.46875 -1.875,0 -3.3516,0.60547 -4.4219,1.8125 -1.0742,1.1992 -1.6094,2.8555 -1.6094,4.9688 0,2.1055 0.53516,3.7617 1.6094,4.9688 1.0703,1.1992 2.5469,1.7969 4.4219,1.7969 1.0508,0 2.0508,-0.14844 3,-0.45312 0.94531,-0.3125 1.9102,-0.80078 2.8906,-1.4688 z"
id="path2" />
</symbol>
<symbol
id="d"
overflow="visible">
<path
d="m 13.734,-11.141 c -0.4375,-0.19531 -0.87109,-0.34375 -1.2969,-0.4375 -0.41797,-0.10156 -0.83984,-0.15625 -1.2656,-0.15625 -1.2617,0 -2.2305,0.40625 -2.9062,1.2188 -0.67969,0.80469 -1.0156,1.9531 -1.0156,3.4531 v 7.0625 H 2.3591 v -15.312 h 4.8906 v 2.5156 c 0.625,-1 1.3438,-1.7266 2.1562,-2.1875 0.82031,-0.46875 1.8008,-0.70312 2.9375,-0.70312 0.16406,0 0.34375,0.01172 0.53125,0.03125 0.19531,0.01172 0.47656,0.03906 0.84375,0.07813 z"
id="path5" />
</symbol>
<symbol
id="a"
overflow="visible">
<path
d="m 17.641,-7.7031 v 1.4062 H 6.188 c 0.125,1.1484 0.53906,2.0078 1.25,2.5781 0.70703,0.57422 1.7031,0.85938 2.9844,0.85938 1.0312,0 2.082,-0.14844 3.1562,-0.45312 1.082,-0.3125 2.1914,-0.77344 3.3281,-1.3906 v 3.7656 c -1.1562,0.4375 -2.3125,0.76562 -3.4688,0.98438 -1.1562,0.22656 -2.3125,0.34375 -3.4688,0.34375 -2.7734,0 -4.9297,-0.70312 -6.4688,-2.1094 -1.5312,-1.4062 -2.2969,-3.3789 -2.2969,-5.9219 0,-2.5 0.75391,-4.4609 2.2656,-5.8906 1.5078,-1.4375 3.582,-2.1562 6.2188,-2.1562 2.4062,0 4.332,0.73047 5.7812,2.1875 1.4453,1.4492 2.1719,3.3828 2.1719,5.7969 z m -5.0312,-1.625 c 0,-0.92578 -0.27344,-1.6719 -0.8125,-2.2344 -0.54297,-0.57031 -1.25,-0.85938 -2.125,-0.85938 -0.94922,0 -1.7188,0.26562 -2.3125,0.79688 -0.5937,0.53126 -0.96484,1.2969 -1.1094,2.2969 z"
id="path8" />
</symbol>
<symbol
id="e"
overflow="visible">
<path
d="m 9.2188,-6.8906 c -1.0234,0 -1.793,0.17188 -2.3125,0.51562 -0.51172,0.34375 -0.76562,0.85547 -0.76562,1.5312 0,0.625 0.20703,1.1172 0.625,1.4688 0.41406,0.34375 0.98828,0.51562 1.7188,0.51562 0.92578,0 1.7031,-0.32812 2.3281,-0.98438 0.63281,-0.66406 0.95312,-1.4922 0.95312,-2.4844 v -0.5625 z m 7.4688,-1.8438 V 0 h -4.9219 v -2.2656 c -0.65625,0.92969 -1.3984,1.6055 -2.2188,2.0312 -0.82422,0.41406 -1.8242,0.625 -3,0.625 -1.5859,0 -2.8711,-0.45703 -3.8594,-1.375 -0.99219,-0.92578 -1.4844,-2.1289 -1.4844,-3.6094 0,-1.7891 0.61328,-3.1016 1.8438,-3.9375 1.2383,-0.84375 3.1797,-1.2656 5.8281,-1.2656 h 2.8906 v -0.39062 c 0,-0.76953 -0.30859,-1.332 -0.92188,-1.6875 -0.61719,-0.36328 -1.5703,-0.54688 -2.8594,-0.54688 -1.0547,0 -2.0312,0.10547 -2.9375,0.3125 -0.89844,0.21094 -1.7305,0.52344 -2.5,0.9375 v -3.7344 c 1.0391,-0.25 2.0859,-0.44141 3.1406,-0.57812 1.0625,-0.13281 2.125,-0.20312 3.1875,-0.20312 2.7578,0 4.75,0.54688 5.9688,1.6406 1.2266,1.0859 1.8438,2.8555 1.8438,5.3125 z"
id="path11" />
</symbol>
<symbol
id="c"
overflow="visible">
<path
d="m 7.7031,-19.656 v 4.3438 H 12.75 v 3.5 H 7.7031 v 6.5 c 0,0.71094 0.14062,1.1875 0.42188,1.4375 0.28126,0.25 0.83594,0.375 1.6719,0.375 h 2.5156 v 3.5 h -4.1875 c -1.9375,0 -3.3125,-0.39844 -4.125,-1.2031 -0.80469,-0.8125 -1.2031,-2.1797 -1.2031,-4.1094 v -6.5 h -2.4219 v -3.5 h 2.4219 v -4.3438 z"
id="path14" />
</symbol>
<symbol
id="l"
overflow="visible">
<path
d="m 12.766,-13.078 v -8.2031 h 4.9219 V -1e-4 H 12.766 v -2.2188 c -0.66797,0.90625 -1.4062,1.5703 -2.2188,1.9844 -0.8126,0.4141 -1.7578,0.625 -2.8281,0.625 -1.8867,0 -3.4336,-0.75 -4.6406,-2.25 -1.2109,-1.5 -1.8125,-3.4258 -1.8125,-5.7812 0,-2.3633 0.60156,-4.2969 1.8125,-5.7969 1.207,-1.5 2.7539,-2.25 4.6406,-2.25 1.0625,0 2,0.21484 2.8125,0.64062 0.82031,0.42969 1.5664,1.0859 2.2344,1.9688 z m -3.2188,9.9219 c 1.0391,0 1.8359,-0.37891 2.3906,-1.1406 0.55078,-0.76953 0.82812,-1.8828 0.82812,-3.3438 0,-1.457 -0.27734,-2.5664 -0.82812,-3.3281 -0.55469,-0.76953 -1.3516,-1.1562 -2.3906,-1.1562 -1.043,0 -1.8398,0.38672 -2.3906,1.1562 -0.55469,0.76172 -0.82812,1.8711 -0.82812,3.3281 0,1.4609 0.27344,2.5742 0.82812,3.3438 0.55078,0.76172 1.3477,1.1406 2.3906,1.1406 z"
id="path17" />
</symbol>
<symbol
id="k"
overflow="visible">
<path
d="m 10.5,-3.1562 c 1.0508,0 1.8516,-0.37891 2.4062,-1.1406 0.55078,-0.76953 0.82812,-1.8828 0.82812,-3.3438 0,-1.457 -0.27734,-2.5664 -0.82812,-3.3281 -0.55469,-0.76953 -1.3555,-1.1562 -2.4062,-1.1562 -1.0547,0 -1.8594,0.38672 -2.4219,1.1562 -0.55469,0.77344 -0.82812,1.8828 -0.82812,3.3281 0,1.4492 0.27344,2.5586 0.82812,3.3281 0.5625,0.77344 1.3672,1.1562 2.4219,1.1562 z m -3.25,-9.9219 c 0.67578,-0.88281 1.4219,-1.5391 2.2344,-1.9688 0.82031,-0.42578 1.7656,-0.64062 2.8281,-0.64062 1.8945,0 3.4453,0.75 4.6562,2.25 1.207,1.5 1.8125,3.4336 1.8125,5.7969 0,2.3555 -0.60547,4.2812 -1.8125,5.7812 -1.2109,1.5 -2.7617,2.25 -4.6562,2.25 -1.0625,0 -2.0078,-0.21094 -2.8281,-0.625 C 8.6719,-0.6602 7.9258,-1.32032 7.25,-2.21882 V -2e-5 H 2.3594 v -21.281 H 7.25 Z"
id="path20" />
</symbol>
<symbol
id="j"
overflow="visible">
<path
d="m 0.34375,-15.312 h 4.8906 l 4.125,10.391 3.5,-10.391 h 4.8906 l -6.4375,16.766 c -0.64844,1.6953 -1.4023,2.8828 -2.2656,3.5625 -0.86719,0.6875 -2,1.0312 -3.4062,1.0312 H 2.79685 V 2.8289 h 1.5312 c 0.83203,0 1.4375,-0.13672 1.8125,-0.40625 C 6.52336,2.16093 6.82024,1.69218 7.03117,1.01645 L 7.17179,0.59457 Z"
id="path23" />
</symbol>
<symbol
id="i"
overflow="visible">
<path
d="m 2.5781,-20.406 h 6.6875 l 4.6562,10.922 4.6719,-10.922 h 6.6875 V 0 H 20.2968 V -14.938 L 15.5937,-3.922 H 12.2656 L 7.5625,-14.938 V 0 H 2.5781 Z"
id="path26" />
</symbol>
<symbol
id="x"
overflow="visible">
<path
d="m 6.2188,-7.8281 -5.5156,-7.4844 h 5.1719 l 3.1406,4.5312 3.1719,-4.5312 h 5.1719 L 11.8439,-7.8594 17.6408,0 H 12.4533 L 9.0158,-4.8438 5.6096,0 H 0.4221 Z"
id="path29" />
</symbol>
<symbol
id="h"
overflow="visible">
<path
d="M 2.3594,-15.312 H 7.25 V 0 H 2.3594 Z m 0,-5.9688 H 7.25 v 4 H 2.3594 Z"
id="path32" />
</symbol>
<symbol
id="g"
overflow="visible">
<path
d="m 16.547,-12.766 c 0.61328,-0.94531 1.3477,-1.6719 2.2031,-2.1719 0.85156,-0.5 1.7891,-0.75 2.8125,-0.75 1.7578,0 3.0977,0.54688 4.0156,1.6406 0.92578,1.0859 1.3906,2.6562 1.3906,4.7188 V -4e-4 h -4.9219 v -7.9844 -0.35938 c 0.0078,-0.13281 0.01563,-0.32031 0.01563,-0.5625 0,-1.082 -0.16406,-1.8633 -0.48438,-2.3438 -0.3125,-0.48828 -0.82422,-0.73438 -1.5312,-0.73438 -0.92969,0 -1.6484,0.38672 -2.1562,1.1562 -0.51172,0.76172 -0.77344,1.8672 -0.78125,3.3125 v 7.5156 h -4.9219 v -7.9844 c 0,-1.6953 -0.14844,-2.7852 -0.4375,-3.2656 -0.29297,-0.48828 -0.8125,-0.73438 -1.5625,-0.73438 -0.9375,0 -1.6641,0.38672 -2.1719,1.1562 -0.51172,0.76172 -0.76562,1.8594 -0.76562,3.2969 v 7.5312 h -4.9219 v -15.312 h 4.9219 v 2.2344 c 0.60156,-0.86328 1.2891,-1.5156 2.0625,-1.9531 0.78125,-0.4375 1.6406,-0.65625 2.5781,-0.65625 1.0625,0 2,0.25781 2.8125,0.76562 0.8125,0.51172 1.4258,1.2305 1.8438,2.1562 z"
id="path35" />
</symbol>
<symbol
id="w"
overflow="visible">
<path
d="m 2.5781,-20.406 h 5.25 v 7.4375 l 7.5938,-7.4375 h 6.1094 l -9.8281,9.6562 10.844,10.75 H 15.9534 L 7.8284,-8.0467 V 2e-4 h -5.25 z"
id="path38" />
</symbol>
<symbol
id="f"
overflow="visible">
<path
d="m 2.1875,-5.9688 v -9.3438 h 4.9219 v 1.5312 c 0,0.83594 -0.00781,1.875 -0.015625,3.125 -0.011719,1.25 -0.015625,2.0859 -0.015625,2.5 0,1.2422 0.03125,2.1328 0.09375,2.6719 0.070313,0.54297 0.17969,0.93359 0.32812,1.1719 0.20703,0.32422 0.47266,0.57422 0.79688,0.75 0.32031,0.16797 0.69141,0.25 1.1094,0.25 1.0195,0 1.8203,-0.39062 2.4062,-1.1719 0.58203,-0.78125 0.875,-1.8672 0.875,-3.2656 v -7.5625 h 4.8906 V -6e-4 H 12.6875 V -2.2194 C 11.94531,-1.32096 11.1641,-0.6608 10.3437,-0.235 9.51948,0.17906 8.6093,0.39 7.6093,0.39 5.8476,0.39 4.5038,-0.14906 3.5781,-1.235 2.64841,-2.317 2.1875,-3.8952 2.1875,-5.9694 Z"
id="path41" />
</symbol>
<symbol
id="v"
overflow="visible">
<path
d="M 2.3594,-21.281 H 7.25 V 0 H 2.3594 Z"
id="path44" />
</symbol>
<symbol
id="u"
overflow="visible">
<path
d="M 2.3594,-21.281 H 7.25 v 11.594 l 5.625,-5.625 h 5.6875 L 11.0937,-8.2808 19.1562,4e-4 H 13.2187 L 7.2499,-6.3902 V 4e-4 H 2.3593 Z"
id="path47" />
</symbol>
<symbol
id="b"
overflow="visible">
<path
d="m 9.6406,-12.188 c -1.0859,0 -1.9141,0.39062 -2.4844,1.1719 -0.57422,0.78125 -0.85938,1.9062 -0.85938,3.375 0,1.4688 0.28516,2.5938 0.85938,3.375 0.57031,0.77344 1.3984,1.1562 2.4844,1.1562 1.0625,0 1.875,-0.38281 2.4375,-1.1562 0.57031,-0.78125 0.85938,-1.9062 0.85938,-3.375 0,-1.4688 -0.28906,-2.5938 -0.85938,-3.375 -0.5625,-0.78125 -1.375,-1.1719 -2.4375,-1.1719 z m 0,-3.5 c 2.6328,0 4.6914,0.71484 6.1719,2.1406 1.4766,1.418 2.2188,3.3867 2.2188,5.9062 0,2.5117 -0.74219,4.4805 -2.2188,5.9062 C 14.332,-0.317 12.2734,0.39 9.6406,0.39 6.9922,0.39 4.9258,-0.31703 3.4375,-1.735 1.9453,-3.1608 1.2031,-5.1295 1.2031,-7.6412 c 0,-2.5195 0.74219,-4.4883 2.2344,-5.9062 1.4883,-1.4258 3.5547,-2.1406 6.2031,-2.1406 z"
id="path50" />
</symbol>
<symbol
id="t"
overflow="visible">
<path
d="m 0.42188,-15.312 h 4.8906 l 3.8281,10.578 3.7969,-10.578 h 4.9062 L 11.81248,0 h -5.375 z"
id="path53" />
</symbol>
<symbol
id="s"
overflow="visible">
<path
d="m 12.422,-21.281 v 3.2188 H 9.7189 c -0.6875,0 -1.1719,0.125 -1.4531,0.375 -0.27344,0.25 -0.40625,0.6875 -0.40625,1.3125 v 1.0625 h 4.1875 v 3.5 H 7.85955 V -2e-4 h -4.8906 v -11.812 h -2.4375 v -3.5 h 2.4375 v -1.0625 c 0,-1.6641 0.46094,-2.8984 1.3906,-3.7031 0.92578,-0.80078 2.3672,-1.2031 4.3281,-1.2031 z"
id="path56" />
</symbol>
<symbol
id="r"
overflow="visible">
<path
d="M 17.75,-9.3281 V 0 h -4.9219 v -7.1094 c 0,-1.3438 -0.03125,-2.2656 -0.09375,-2.7656 -0.0625,-0.5 -0.16797,-0.86719 -0.3125,-1.1094 -0.1875,-0.3125 -0.44922,-0.55469 -0.78125,-0.73438 -0.32422,-0.17578 -0.69531,-0.26562 -1.1094,-0.26562 -1.0234,0 -1.8242,0.39844 -2.4062,1.1875 -0.58594,0.78125 -0.875,1.8711 -0.875,3.2656 V -1e-4 H 2.3594 v -21.281 H 7.25 v 8.2031 c 0.73828,-0.88281 1.5195,-1.5391 2.3438,-1.9688 0.83203,-0.42578 1.75,-0.64062 2.75,-0.64062 1.7695,0 3.1133,0.54688 4.0312,1.6406 0.91406,1.0859 1.375,2.6562 1.375,4.7188 z"
id="path59" />
</symbol>
<symbol
id="q"
overflow="visible">
<path
d="m 2.5781,-20.406 h 5.875 l 7.4219,14 v -14 h 4.9844 V 0 h -5.875 L 7.5625,-14 V 0 H 2.5781 Z"
id="path62" />
</symbol>
<symbol
id="p"
overflow="visible">
<path
d="M 17.75,-9.3281 V 0 h -4.9219 v -7.1406 c 0,-1.3203 -0.03125,-2.2344 -0.09375,-2.7344 -0.0625,-0.5 -0.16797,-0.86719 -0.3125,-1.1094 -0.1875,-0.3125 -0.44922,-0.55469 -0.78125,-0.73438 -0.32422,-0.17578 -0.69531,-0.26562 -1.1094,-0.26562 -1.0234,0 -1.8242,0.39844 -2.4062,1.1875 -0.58594,0.78125 -0.875,1.8711 -0.875,3.2656 V -1e-4 H 2.3594 v -15.312 H 7.25 v 2.2344 c 0.73828,-0.88281 1.5195,-1.5391 2.3438,-1.9688 0.83203,-0.42578 1.75,-0.64062 2.75,-0.64062 1.7695,0 3.1133,0.54688 4.0312,1.6406 0.91406,1.0859 1.375,2.6562 1.375,4.7188 z"
id="path65" />
</symbol>
<symbol
id="o"
overflow="visible">
<path
d="m 2.5781,-20.406 h 8.7344 c 2.5938,0 4.582,0.57812 5.9688,1.7344 1.3945,1.1484 2.0938,2.7891 2.0938,4.9219 0,2.1367 -0.69922,3.7812 -2.0938,4.9375 -1.3867,1.1562 -3.375,1.7344 -5.9688,1.7344 H 7.8281 V 3e-4 h -5.25 z m 5.25,3.8125 v 5.7031 H 10.75 c 1.0195,0 1.8047,-0.25 2.3594,-0.75 0.5625,-0.5 0.84375,-1.2031 0.84375,-2.1094 0,-0.91406 -0.28125,-1.6172 -0.84375,-2.1094 -0.55469,-0.48828 -1.3398,-0.73438 -2.3594,-0.73438 z"
id="path68" />
</symbol>
<symbol
id="n"
overflow="visible">
<path
d="M 2.3594,-15.312 H 7.25 v 15.031 c 0,2.0508 -0.49609,3.6172 -1.4844,4.7031 -0.98047,1.082 -2.4062,1.625 -4.2812,1.625 H -0.9375 V 2.8283 h 0.85938 c 0.92578,0 1.5625,-0.21094 1.9062,-0.625 0.35156,-0.41797 0.53125,-1.2461 0.53125,-2.4844 z m 0,-5.9688 H 7.25 v 4 H 2.3594 Z"
id="path71" />
</symbol>
<symbol
id="m"
overflow="visible">
<path
d="m 14.719,-14.828 v 3.9844 c -0.65625,-0.45703 -1.3242,-0.79688 -2,-1.0156 -0.66797,-0.21875 -1.3594,-0.32812 -2.0781,-0.32812 -1.3672,0 -2.4336,0.40234 -3.2031,1.2031 -0.76172,0.79297 -1.1406,1.9062 -1.1406,3.3438 0,1.4297 0.37891,2.543 1.1406,3.3438 0.76953,0.79297 1.8359,1.1875 3.2031,1.1875 0.75781,0 1.4844,-0.10938 2.1719,-0.32812 0.6875,-0.22656 1.3203,-0.56641 1.9062,-1.0156 v 4 c -0.76172,0.28125 -1.5391,0.48828 -2.3281,0.625 -0.78125,0.14453 -1.5742,0.21875 -2.375,0.21875 -2.7617,0 -4.9219,-0.70703 -6.4844,-2.125 -1.5547,-1.4141 -2.3281,-3.3828 -2.3281,-5.9062 0,-2.5312 0.77344,-4.5039 2.3281,-5.9219 1.5625,-1.4141 3.7227,-2.125 6.4844,-2.125 0.80078,0 1.5938,0.07422 2.375,0.21875 0.78125,0.13672 1.5547,0.35156 2.3281,0.64062 z"
id="path74" />
</symbol>
</defs>
<g
id="g161"
transform="matrix(0.02232143,0,0,0.02232143,-2.1875004,-0.62500041)"
style="fill:#000000">
<path
d="M 350,532 C 488.95,532 602,418.95 602,280 602,141.05 488.95,28 350,28 211.05,28 98,141.05 98,280 98,418.95 211.05,532 350,532 Z M 350,39.2 C 482.78,39.2 590.8,147.22 590.8,280 590.8,412.78 482.78,520.8 350,520.8 217.22,520.8 109.2,412.78 109.2,280 109.2,147.22 217.22,39.2 350,39.2 Z"
id="path79"
style="fill:#000000" />
<path
d="m 240.13,423.28 c 1.3789,10.707 10.449,19.039 21.527,19.039 12.023,0 21.805,-9.7812 21.805,-21.805 v -129.64 c 0,-12.023 -9.7812,-21.805 -21.805,-21.805 -11.082,0 -20.16,8.3398 -21.527,19.059 -21.43,1.6758 -40.086,13.316 -51.309,30.32 v -50.602 c 0,-89.062 72.301,-161.52 161.17,-161.52 88.869,0 161.17,72.453 161.17,161.52 v 50.992 c -11.195,-17.215 -29.953,-29.023 -51.547,-30.715 -1.3711,-10.711 -10.445,-19.059 -21.527,-19.059 -12.023,0 -21.805,9.7812 -21.805,21.805 v 129.64 c 0,12.023 9.7812,21.805 21.805,21.805 11.078,0 20.148,-8.332 21.527,-19.039 34.914,-2.7344 62.512,-31.977 62.512,-67.602 0,-3.4492 -0.33984,-6.8164 -0.83984,-10.129 0.62891,-0.90625 1.082,-1.9414 1.082,-3.1289 l 0.004,-74.582 c 0,-95.234 -77.332,-172.71 -172.38,-172.71 -95.043,0 -172.38,77.48 -172.38,172.71 v 74.582 c 0,1.0586 0.375,1.9922 0.88672,2.8398 -0.52734,3.4062 -0.88672,6.8672 -0.88672,10.422 0,35.625 27.594,64.867 62.508,67.602 z m 10.922,-132.41 c 0,-5.8477 4.7617,-10.605 10.605,-10.605 5.8477,0 10.605,4.7617 10.605,10.605 v 129.64 c 0,5.8477 -4.7617,10.605 -10.605,10.605 -5.8477,0 -10.605,-4.7617 -10.605,-10.605 z m 197.64,129.64 c 0,5.8477 -4.7617,10.605 -10.605,10.605 -5.8477,0 -10.605,-4.7617 -10.605,-10.605 V 290.87 c 0,-5.8477 4.7617,-10.605 10.605,-10.605 5.8477,0 10.605,4.7617 10.605,10.605 z m 11.199,-8.4453 v -112.74 c 28.605,2.8242 51.031,27.008 51.031,56.348 0.004,29.359 -22.418,53.562 -51.031,56.391 z m -220.04,-112.74 v 112.74 c -28.605,-2.8242 -51.027,-27.031 -51.027,-56.391 0,-29.34 22.422,-53.527 51.027,-56.348 z"
id="path81"
style="fill:#000000" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m1.5 3c-0.27614 0-0.5 0.22386-0.5 0.5s0.22386 0.5 0.5 0.5h12c0.2761 0 0.5-0.22386 0.5-0.5s-0.2239-0.5-0.5-0.5h-12zm-0.5 4.5c0-0.27614 0.22386-0.5 0.5-0.5h12c0.2761 0 0.5 0.22386 0.5 0.5s-0.2239 0.5-0.5 0.5h-12c-0.27614 0-0.5-0.22386-0.5-0.5zm0 4c0-0.2761 0.22386-0.5 0.5-0.5h12c0.2761 0 0.5 0.2239 0.5 0.5s-0.2239 0.5-0.5 0.5h-12c-0.27614 0-0.5-0.2239-0.5-0.5z" clip-rule="evenodd" fill="#000" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 582 B

View file

@ -0,0 +1,8 @@
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.89998 0.499976C2.89998 0.279062 2.72089 0.0999756 2.49998 0.0999756C2.27906 0.0999756 2.09998 0.279062 2.09998 0.499976V1.09998H1.49998C1.27906 1.09998 1.09998 1.27906 1.09998 1.49998C1.09998 1.72089 1.27906 1.89998 1.49998 1.89998H2.09998V2.49998C2.09998 2.72089 2.27906 2.89998 2.49998 2.89998C2.72089 2.89998 2.89998 2.72089 2.89998 2.49998V1.89998H3.49998C3.72089 1.89998 3.89998 1.72089 3.89998 1.49998C3.89998 1.27906 3.72089 1.09998 3.49998 1.09998H2.89998V0.499976ZM5.89998 3.49998C5.89998 3.27906 5.72089 3.09998 5.49998 3.09998C5.27906 3.09998 5.09998 3.27906 5.09998 3.49998V4.09998H4.49998C4.27906 4.09998 4.09998 4.27906 4.09998 4.49998C4.09998 4.72089 4.27906 4.89998 4.49998 4.89998H5.09998V5.49998C5.09998 5.72089 5.27906 5.89998 5.49998 5.89998C5.72089 5.89998 5.89998 5.72089 5.89998 5.49998V4.89998H6.49998C6.72089 4.89998 6.89998 4.72089 6.89998 4.49998C6.89998 4.27906 6.72089 4.09998 6.49998 4.09998H5.89998V3.49998ZM1.89998 6.49998C1.89998 6.27906 1.72089 6.09998 1.49998 6.09998C1.27906 6.09998 1.09998 6.27906 1.09998 6.49998V7.09998H0.499976C0.279062 7.09998 0.0999756 7.27906 0.0999756 7.49998C0.0999756 7.72089 0.279062 7.89998 0.499976 7.89998H1.09998V8.49998C1.09998 8.72089 1.27906 8.89997 1.49998 8.89997C1.72089 8.89997 1.89998 8.72089 1.89998 8.49998V7.89998H2.49998C2.72089 7.89998 2.89998 7.72089 2.89998 7.49998C2.89998 7.27906 2.72089 7.09998 2.49998 7.09998H1.89998V6.49998ZM8.54406 0.98184L8.24618 0.941586C8.03275 0.917676 7.90692 1.1655 8.02936 1.34194C8.17013 1.54479 8.29981 1.75592 8.41754 1.97445C8.91878 2.90485 9.20322 3.96932 9.20322 5.10022C9.20322 8.37201 6.82247 11.0878 3.69887 11.6097C3.45736 11.65 3.20988 11.6772 2.96008 11.6906C2.74563 11.702 2.62729 11.9535 2.77721 12.1072C2.84551 12.1773 2.91535 12.2458 2.98667 12.3128L3.05883 12.3795L3.31883 12.6045L3.50684 12.7532L3.62796 12.8433L3.81491 12.9742L3.99079 13.089C4.11175 13.1651 4.23536 13.2375 4.36157 13.3059L4.62496 13.4412L4.88553 13.5607L5.18837 13.6828L5.43169 13.7686C5.56564 13.8128 5.70149 13.8529 5.83857 13.8885C5.94262 13.9155 6.04767 13.9401 6.15405 13.9622C6.27993 13.9883 6.40713 14.0109 6.53544 14.0298L6.85241 14.0685L7.11934 14.0892C7.24637 14.0965 7.37436 14.1002 7.50322 14.1002C11.1483 14.1002 14.1032 11.1453 14.1032 7.50023C14.1032 7.25044 14.0893 7.00389 14.0623 6.76131L14.0255 6.48407C13.991 6.26083 13.9453 6.04129 13.8891 5.82642C13.8213 5.56709 13.7382 5.31398 13.6409 5.06881L13.5279 4.80132L13.4507 4.63542L13.3766 4.48666C13.2178 4.17773 13.0353 3.88295 12.8312 3.60423L12.6782 3.40352L12.4793 3.16432L12.3157 2.98361L12.1961 2.85951L12.0355 2.70246L11.8134 2.50184L11.4925 2.24191L11.2483 2.06498L10.9562 1.87446L10.6346 1.68894L10.3073 1.52378L10.1938 1.47176L9.95488 1.3706L9.67791 1.2669L9.42566 1.1846L9.10075 1.09489L8.83599 1.03486L8.54406 0.98184ZM10.4032 5.30023C10.4032 4.27588 10.2002 3.29829 9.83244 2.40604C11.7623 3.28995 13.1032 5.23862 13.1032 7.50023C13.1032 10.593 10.596 13.1002 7.50322 13.1002C6.63646 13.1002 5.81597 12.9036 5.08355 12.5522C6.5419 12.0941 7.81081 11.2082 8.74322 10.0416C8.87963 10.2284 9.10028 10.3497 9.34928 10.3497C9.76349 10.3497 10.0993 10.0139 10.0993 9.59971C10.0993 9.24256 9.84965 8.94373 9.51535 8.86816C9.57741 8.75165 9.63653 8.63334 9.6926 8.51332C9.88358 8.63163 10.1088 8.69993 10.35 8.69993C11.0403 8.69993 11.6 8.14028 11.6 7.44993C11.6 6.75976 11.0406 6.20024 10.3505 6.19993C10.3853 5.90487 10.4032 5.60464 10.4032 5.30023Z"
fill="currentColor"
/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

Before

Width:  |  Height:  |  Size: 613 B

After

Width:  |  Height:  |  Size: 613 B

View file

Before

Width:  |  Height:  |  Size: 535 B

After

Width:  |  Height:  |  Size: 535 B

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 924 B

After

Width:  |  Height:  |  Size: 924 B

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

Before

Width:  |  Height:  |  Size: 919 B

After

Width:  |  Height:  |  Size: 919 B

View file

Before

Width:  |  Height:  |  Size: 332 B

After

Width:  |  Height:  |  Size: 332 B

View file

Before

Width:  |  Height:  |  Size: 774 B

After

Width:  |  Height:  |  Size: 774 B

View file

Before

Width:  |  Height:  |  Size: 784 B

After

Width:  |  Height:  |  Size: 784 B

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m7.4993 0.25c-4.003 0-7.2493 3.2459-7.2493 7.2502 0 3.2028 2.0772 5.9204 4.9581 6.8795 0.36274 0.0663 0.49492-0.1575 0.49492-0.3498 0-0.1723-0.00623-0.628-0.00979-1.2329-2.0166 0.438-2.4421-0.972-2.4421-0.972-0.3298-0.8376-0.80513-1.0606-0.80513-1.0606-0.65826-0.4495 0.04985-0.4406 0.04985-0.4406 0.72769 0.0512 1.1104 0.7473 1.1104 0.7473 0.64669 1.1077 1.6971 0.7877 2.1101 0.6021 0.06587-0.4682 0.25324-0.7878 0.4602-0.9689-1.6098-0.1834-3.3024-0.80512-3.3024-3.5833 0-0.79179 0.28262-1.4385 0.74638-1.9454-0.07477-0.18337-0.32356-0.92042 0.07121-1.9187 0 0 0.60841-0.19495 1.9935 0.74282 0.57815-0.16067 1.1986-0.24078 1.815-0.2439 0.61598 0.00312 1.236 0.08323 1.815 0.2439 1.3842-0.93777 1.9917-0.74282 1.9917-0.74282 0.3957 0.9983 0.1469 1.7354 0.0726 1.9187 0.4646 0.50694 0.745 1.1536 0.745 1.9454 0 2.7853-1.6953 3.3982-3.31 3.5775 0.25992 0.2239 0.49181 0.6663 0.49181 1.3428 0 0.9689-0.00891 1.7509-0.00891 1.9886 0 0.194 0.13086 0.4197 0.49849 0.3489 2.8787-0.9609 4.9541-3.6763 4.9541-6.8786 0-4.0043-3.2464-7.2502-7.2507-7.2502z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
width="500pt" width="15"
height="500pt" height="15"
version="1.1" version="1.1"
viewBox="0 0 500 500" viewBox="0 0 11.25 11.25"
id="svg163" id="svg163"
sodipodi:docname="headphones.svg" sodipodi:docname="headphones.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
@ -22,12 +22,12 @@
inkscape:deskcolor="#505050" inkscape:deskcolor="#505050"
inkscape:document-units="pt" inkscape:document-units="pt"
showgrid="false" showgrid="false"
inkscape:zoom="1.1003571" inkscape:zoom="26.19163"
inkscape:cx="446.67318" inkscape:cx="9.0296024"
inkscape:cy="398.0526" inkscape:cy="9.6977548"
inkscape:window-width="2560" inkscape:window-width="1440"
inkscape:window-height="1414" inkscape:window-height="849"
inkscape:window-x="1920" inkscape:window-x="0"
inkscape:window-y="0" inkscape:window-y="0"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg163" /> inkscape:current-layer="svg163" />
@ -211,7 +211,7 @@
</defs> </defs>
<g <g
id="g161" id="g161"
transform="matrix(0.99206349,0,0,0.99206349,-97.222222,-27.777778)" transform="matrix(0.02232143,0,0,0.02232143,-2.1875004,-0.62500041)"
style="fill:#ffffff"> style="fill:#ffffff">
<path <path
d="M 350,532 C 488.95,532 602,418.95 602,280 602,141.05 488.95,28 350,28 211.05,28 98,141.05 98,280 98,418.95 211.05,532 350,532 Z M 350,39.2 C 482.78,39.2 590.8,147.22 590.8,280 590.8,412.78 482.78,520.8 350,520.8 217.22,520.8 109.2,412.78 109.2,280 109.2,147.22 217.22,39.2 350,39.2 Z" d="M 350,532 C 488.95,532 602,418.95 602,280 602,141.05 488.95,28 350,28 211.05,28 98,141.05 98,280 98,418.95 211.05,532 350,532 Z M 350,39.2 C 482.78,39.2 590.8,147.22 590.8,280 590.8,412.78 482.78,520.8 350,520.8 217.22,520.8 109.2,412.78 109.2,280 109.2,147.22 217.22,39.2 350,39.2 Z"

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View file

Before

Width:  |  Height:  |  Size: 582 B

After

Width:  |  Height:  |  Size: 582 B

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m6.05 2.75c0-0.30375-0.24624-0.55-0.55-0.55s-0.55 0.24625-0.55 0.55v9.5c0 0.3037 0.24624 0.55 0.55 0.55s0.55-0.2463 0.55-0.55v-9.5zm4 0c0-0.30375-0.24629-0.55-0.55005-0.55s-0.55 0.24625-0.55 0.55v9.5c0 0.3037 0.24624 0.55 0.55 0.55s0.55005-0.2463 0.55005-0.55v-9.5z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 487 B

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m3.2418 2.3218c0.15008-0.09049 0.33658-0.0958 0.49156-0.014l9 4.75c0.164 0.08655 0.2666 0.25676 0.2666 0.44219s-0.1026 0.35564-0.2666 0.44219l-9 4.75c-0.15498 0.0818-0.34148 0.0765-0.49156-0.014-0.15007-0.0905-0.24182-0.253-0.24182-0.4282v-9.5c0-0.17524 0.09175-0.3377 0.24182-0.42819zm0.75818 1.2574v7.8414l7.4288-3.9207-7.4288-3.9208z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 558 B

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m7.4697 1.0508c0.17154 0.0839 0.28032 0.25819 0.28032 0.44915v12c0 0.191-0.10878 0.3653-0.28032 0.4492-0.17155 0.0839-0.37591 0.0627-0.52665-0.0545l-3.7217-2.8947h-1.7213c-0.82843 0-1.5-0.6716-1.5-1.5v-4c0-0.82842 0.67157-1.5 1.5-1.5h1.7213l3.7217-2.8947c0.15074-0.11724 0.3551-0.13838 0.52665-0.05448zm-0.71968 1.4715-3.0502 2.3724c-0.08777 0.06826-0.19578 0.10532-0.30697 0.10532h-1.8929c-0.27614 0-0.5 0.22386-0.5 0.5v4c0 0.27615 0.22386 0.5 0.5 0.5h1.8929c0.11119 0 0.2192 0.0371 0.30697 0.1053l3.0502 2.3724v-9.9554zm3.5284 1.3257c0.1839-0.12237 0.4322-0.07247 0.5546 0.11145 1.4228 2.1385 1.4228 4.9425 0 7.081-0.1224 0.1839-0.3707 0.2338-0.5546 0.1114-0.184-0.1223-0.2339-0.3706-0.1115-0.5546 1.2442-1.87 1.2442-4.3246 0-6.1947-0.1224-0.18393-0.0725-0.43223 0.1115-0.5546zm2.4001-2.4176c-0.1429-0.16854-0.3953-0.1894-0.5638-0.04658-0.1685 0.14281-0.1894 0.39522-0.0466 0.56376 2.7092 3.1973 2.7092 7.9075 0 11.105-0.1428 0.1685-0.1219 0.4209 0.0466 0.5637 0.1685 0.1429 0.4209 0.122 0.5638-0.0465 2.9621-3.4957 2.9621-8.6435 0-12.139z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m8 1.5c0-0.18938-0.107-0.36251-0.27639-0.44721-0.1694-0.084697-0.3721-0.066419-0.52361 0.04721l-3.8667 2.9h-1.8333c-0.82843 0-1.5 0.67158-1.5 1.5v4c0 0.8284 0.67157 1.5 1.5 1.5h1.8333l3.8667 2.9c0.15151 0.1136 0.35421 0.1319 0.52361 0.0472 0.16939-0.0847 0.27639-0.2578 0.27639-0.4472v-12zm-4.2 3.4 3.2-2.4v10l-3.2-2.4c-0.08655-0.0649-0.19181-0.1-0.3-0.1h-2c-0.27614 0-0.5-0.22386-0.5-0.5v-4c0-0.27614 0.22386-0.5 0.5-0.5h2c0.10819 0 0.21345-0.03509 0.3-0.1zm7.033-0.94051c-0.1224-0.18392-0.3707-0.23382-0.5546-0.11145-0.184 0.12237-0.2339 0.37067-0.1115 0.5546 1.2442 1.87 1.2442 4.3246 0 6.1947-0.1224 0.184-0.0725 0.4323 0.1115 0.5546 0.1839 0.1224 0.4322 0.0725 0.5546-0.1114 1.4228-2.1385 1.4228-4.9425 0-7.081z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 938 B

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m7.7236 1.0528c0.16939 0.0847 0.27639 0.25783 0.27639 0.44721v12c0 0.1894-0.107 0.3625-0.27639 0.4472-0.1694 0.0847-0.3721 0.0664-0.52361-0.0472l-3.8667-2.9h-1.8333c-0.82843 0-1.5-0.6716-1.5-1.5v-4c0-0.82842 0.67157-1.5 1.5-1.5h1.8333l3.8667-2.9c0.15151-0.11363 0.35421-0.13191 0.52361-0.04721zm-0.72361 1.4472-3.2 2.4c-0.08655 0.06491-0.19181 0.1-0.3 0.1h-2c-0.27614 0-0.5 0.22386-0.5 0.5v4c0 0.27614 0.22386 0.5 0.5 0.5h2c0.10819 0 0.21345 0.0351 0.3 0.1l3.2 2.4v-10zm7.8536 2.6464c0.1952 0.19526 0.1952 0.51184 0 0.7071l-1.6465 1.6464 1.6465 1.6464c0.1952 0.19526 0.1952 0.51184 0 0.7071-0.1953 0.19525-0.5119 0.19525-0.7072 0l-1.6464-1.6464-1.6464 1.6464c-0.1953 0.19525-0.5119 0.19525-0.7072 0-0.19522-0.19526-0.19522-0.51184 0-0.7071l1.6465-1.6464-1.6465-1.6464c-0.19522-0.19526-0.19522-0.51184 0-0.7071 0.1953-0.19527 0.5119-0.19527 0.7072 0l1.6464 1.6464 1.6464-1.6464c0.1953-0.19527 0.5119-0.19527 0.7072 0z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="M8 1.5C8 1.31062 7.893 1.13749 7.72361 1.05279C7.55421 0.968093 7.35151 0.986371 7.2 1.1L3.33333 4H1.5C0.671573 4 0 4.67158 0 5.5V9.5C0 10.3284 0.671573 11 1.5 11H3.33333L7.2 13.9C7.35151 14.0136 7.55421 14.0319 7.72361 13.9472C7.893 13.8625 8 13.6894 8 13.5V1.5ZM3.8 4.9L7 2.5V12.5L3.8 10.1C3.71345 10.0351 3.60819 10 3.5 10H1.5C1.22386 10 1 9.77614 1 9.5V5.5C1 5.22386 1.22386 5 1.5 5H3.5C3.60819 5 3.71345 4.96491 3.8 4.9ZM10.083 5.05577C9.96066 4.87185 9.71235 4.82195 9.52843 4.94432C9.3445 5.06669 9.2946 5.31499 9.41697 5.49892C10.2207 6.70693 10.2207 8.29303 9.41697 9.50104C9.2946 9.68496 9.3445 9.93326 9.52843 10.0556C9.71235 10.178 9.96066 10.1281 10.083 9.94418C11.0653 8.46773 11.0653 6.53222 10.083 5.05577Z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 944 B

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m2 3c0-0.55228 0.44772-1 1-1h9c0.5523 0 1 0.44772 1 1v9c0 0.5523-0.4477 1-1 1h-9c-0.55228 0-1-0.4477-1-1v-9zm10 0h-9v9h9v-9z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 346 B

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m7.5 0c0.27614 0 0.5 0.22386 0.5 0.5v2c0 0.27614-0.22386 0.5-0.5 0.5s-0.5-0.22386-0.5-0.5v-2c0-0.27614 0.22386-0.5 0.5-0.5zm-5.3033 2.1967c0.19526-0.19526 0.51184-0.19526 0.70711 0l1.4142 1.4142c0.19526 0.19526 0.19526 0.51185 0 0.70711s-0.51185 0.19526-0.70711 0l-1.4142-1.4142c-0.19526-0.19527-0.19526-0.51185 0-0.70711zm-1.6967 4.8033c-0.27614 0-0.5 0.22386-0.5 0.5s0.22386 0.5 0.5 0.5h2c0.27614 0 0.5-0.22386 0.5-0.5s-0.22386-0.5-0.5-0.5h-2zm1.6967 5.8033c-0.19526-0.1953-0.19526-0.5118 0-0.7071l1.4142-1.4142c0.19526-0.1953 0.51185-0.1953 0.70711 0 0.19526 0.1952 0.19526 0.5118 0 0.7071l-1.4142 1.4142c-0.19527 0.1953-0.51185 0.1953-0.70711 0zm10.303-5.8033c-0.2761 0-0.5 0.22386-0.5 0.5s0.2239 0.5 0.5 0.5h2c0.2761 0 0.5-0.22386 0.5-0.5s-0.2239-0.5-0.5-0.5h-2zm-1.818-2.682c-0.1953-0.19526-0.1953-0.51185 0-0.70711l1.4142-1.4142c0.1953-0.19526 0.5118-0.19526 0.7071 0s0.1953 0.51184 0 0.70711l-1.4142 1.4142c-0.1953 0.19526-0.5119 0.19526-0.7071 0zm-2.682 8.182c0-0.2761-0.22386-0.5-0.5-0.5s-0.5 0.2239-0.5 0.5v2c0 0.2761 0.22386 0.5 0.5 0.5s0.5-0.2239 0.5-0.5v-2zm2.682-1.818c0.1952-0.1953 0.5118-0.1953 0.7071 0l1.4142 1.4142c0.1953 0.1953 0.1953 0.5118 0 0.7071s-0.5118 0.1953-0.7071 0l-1.4142-1.4142c-0.1953-0.1953-0.1953-0.5119 0-0.7071zm-5.182-3.182c0-1.1046 0.89543-2 2-2s2 0.89543 2 2-0.89543 2-2 2-2-0.89543-2-2zm2-3c-1.6568 0-3 1.3432-3 3s1.3432 3 3 3 3-1.3432 3-3-1.3432-3-3-3z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m13.05 2.7499c0-0.30376-0.2462-0.55-0.55-0.55-0.3037 0-0.55 0.24624-0.55 0.55v4.5326c-0.0456-0.09448-0.1207-0.17399-0.2168-0.22474l-9-4.75c-0.15498-0.0818-0.34148-0.07649-0.49156 0.014-0.15007 0.09049-0.24182 0.25295-0.24182 0.42819v9.5c0 0.1752 0.09175 0.3377 0.24182 0.4281 0.15008 0.0905 0.33658 0.0958 0.49156 0.014l9-4.75c0.0961-0.05075 0.1712-0.13026 0.2168-0.22474v4.5325c0 0.3037 0.2463 0.55 0.55 0.55 0.3038 0 0.55-0.2463 0.55-0.55v-9.5zm-10.05 8.6708v-7.8415l7.4288 3.9208-7.4288 3.9208z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 719 B

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15" height="15" fill="none" version="1.1" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg">
<path d="m1.9498 2.7499c0-0.30376 0.24624-0.55 0.55-0.55 0.30375 0 0.55 0.24624 0.55 0.55v4.5326c0.04564-0.09448 0.1207-0.17399 0.21686-0.22474l9-4.75c0.155-0.0818 0.3415-0.07649 0.4916 0.014s0.2418 0.25295 0.2418 0.42819v9.5c0 0.1752-0.0917 0.3377-0.2418 0.4281-0.1501 0.0905-0.3366 0.0958-0.4916 0.014l-9-4.75c-0.09616-0.05075-0.17122-0.13026-0.21686-0.22474v4.5325c0 0.3037-0.24625 0.55-0.55 0.55-0.30376 0-0.55-0.2463-0.55-0.55v-9.5zm2.6215 4.7501 7.4288 3.9208v-7.8415l-7.4288 3.9208z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 702 B