Update Koneko integration

This commit is contained in:
2025-06-24 09:23:51 -06:00
parent 46cb20ff09
commit 46baa99c0c
3271 changed files with 193256 additions and 4017 deletions

View File

@ -0,0 +1,117 @@
CC0 1.0 Universal
Statement of Purpose
The laws of most jurisdictions throughout the world automatically confer
exclusive Copyright and Related Rights (defined below) upon the creator and
subsequent owner(s) (each and all, an "owner") of an original work of
authorship and/or a database (each, a "Work").
Certain owners wish to permanently relinquish those rights to a Work for the
purpose of contributing to a commons of creative, cultural and scientific
works ("Commons") that the public can reliably and without fear of later
claims of infringement build upon, modify, incorporate in other works, reuse
and redistribute as freely as possible in any form whatsoever and for any
purposes, including without limitation commercial purposes. These owners may
contribute to the Commons to promote the ideal of a free culture and the
further production of creative, cultural and scientific works, or to gain
reputation or greater distribution for their Work in part through the use and
efforts of others.
For these and/or other purposes and motivations, and without any expectation
of additional consideration or compensation, the person associating CC0 with a
Work (the "Affirmer"), to the extent that he or she is an owner of Copyright
and Related Rights in the Work, voluntarily elects to apply CC0 to the Work
and publicly distribute the Work under its terms, with knowledge of his or her
Copyright and Related Rights in the Work and the meaning and intended legal
effect of CC0 on those rights.
1. Copyright and Related Rights. A Work made available under CC0 may be
protected by copyright and related or neighboring rights ("Copyright and
Related Rights"). Copyright and Related Rights include, but are not limited
to, the following:
i. the right to reproduce, adapt, distribute, perform, display, communicate,
and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or likeness
depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work,
subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data in
a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the
European Parliament and of the Council of 11 March 1996 on the legal
protection of databases, and under any national implementation thereof,
including any amended or successor version of such directive); and
vii. other similar, equivalent or corresponding rights throughout the world
based on applicable law or treaty, and any national implementations thereof.
2. Waiver. To the greatest extent permitted by, but not in contravention of,
applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and
unconditionally waives, abandons, and surrenders all of Affirmer's Copyright
and Related Rights and associated claims and causes of action, whether now
known or unknown (including existing as well as future claims and causes of
action), in the Work (i) in all territories worldwide, (ii) for the maximum
duration provided by applicable law or treaty (including future time
extensions), (iii) in any current or future medium and for any number of
copies, and (iv) for any purpose whatsoever, including without limitation
commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes
the Waiver for the benefit of each member of the public at large and to the
detriment of Affirmer's heirs and successors, fully intending that such Waiver
shall not be subject to revocation, rescission, cancellation, termination, or
any other legal or equitable action to disrupt the quiet enjoyment of the Work
by the public as contemplated by Affirmer's express Statement of Purpose.
3. Public License Fallback. Should any part of the Waiver for any reason be
judged legally invalid or ineffective under applicable law, then the Waiver
shall be preserved to the maximum extent permitted taking into account
Affirmer's express Statement of Purpose. In addition, to the extent the Waiver
is so judged Affirmer hereby grants to each affected person a royalty-free,
non transferable, non sublicensable, non exclusive, irrevocable and
unconditional license to exercise Affirmer's Copyright and Related Rights in
the Work (i) in all territories worldwide, (ii) for the maximum duration
provided by applicable law or treaty (including future time extensions), (iii)
in any current or future medium and for any number of copies, and (iv) for any
purpose whatsoever, including without limitation commercial, advertising or
promotional purposes (the "License"). The License shall be deemed effective as
of the date CC0 was applied by Affirmer to the Work. Should any part of the
License for any reason be judged legally invalid or ineffective under
applicable law, such partial invalidity or ineffectiveness shall not
invalidate the remainder of the License, and in such case Affirmer hereby
affirms that he or she will not (i) exercise any of his or her remaining
Copyright and Related Rights in the Work or (ii) assert any associated claims
and causes of action with respect to the Work, in either case contrary to
Affirmer's express Statement of Purpose.
4. Limitations and Disclaimers.
a. No trademark or patent rights held by Affirmer are waived, abandoned,
surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or warranties
of any kind concerning the Work, express, implied, statutory or otherwise,
including without limitation warranties of title, merchantability, fitness
for a particular purpose, non infringement, or the absence of latent or
other defects, accuracy, or the present or absence of errors, whether or not
discoverable, all to the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons
that may apply to the Work or any use thereof, including without limitation
any person's Copyright and Related Rights in the Work. Further, Affirmer
disclaims responsibility for obtaining any necessary consents, permissions
or other rights required for any use of the Work.
d. Affirmer understands and acknowledges that Creative Commons is not a
party to this document and has no duty or obligation with respect to this
CC0 or use of the Work.
For more information, please see
<http://creativecommons.org/publicdomain/zero/1.0/>

View File

@ -0,0 +1,76 @@
# @icon/linea-music
[![npm version](https://img.shields.io/npm/v/@icon/linea-music.svg)](https://www.npmjs.org/package/@icon/linea-music)
This repository is a module of the full [standard-icons][standard-icons] repository.
## Install
This repository is distributed with [npm]. After [installing npm][install-npm], you can install `@icon/linea-music` with this command.
```bash
npm install --save @icon/linea-music
```
## Usage
There are many ways/formats of how to use linea-music. The fastest and recommended way is via SVG directly. Or use the webfont version if you want to include all icons at once:
### SVG icons -- when you need just a few icons in your project
1 . If you want to use just a few icons. Find the icons you need in "icons" folder. Then use them as regular images:
```
<img height="32" width="32" src="@icon/linea-music/icons/music-bell.svg" />
```
2 . Icons can be served from a CDN such as [Unpkg][Unpkg]. Simply use the `@icon/linea-music` npm package in the URL like the following:
```
<img height="32" width="32" src="https://unpkg.com/@icon/linea-music/icons/music-bell.svg" />
```
### Icons font -- ideal when you want to include all icons at once
1 . Install `@icon/linea-music` with this command. In the `<head>` of your html, reference the location to your `linea-music.css`.
```
<head>
...
<link rel="stylesheet" href="@icon/linea-music/linea-music.css">
...
</head>
```
2 . Use [unpkg.com][Unpkg] to load directly linea-music without installing anything:
```
<head>
...
<link rel="stylesheet" href="https://unpkg.com/@icon/linea-music/linea-music.css">
...
</head>
```
> Place linea-music with `<i>` tag in your html like this. Icon class names are to be used with the `lmu` class prefix.
```
<i class="lmu lmu-music-bell"></i>
```
## Bugs, Ideas, Pull Requests
If you have any ideas or found bugs, please send me Pull Requests or let me know with [GitHub Issues][github issues].
## License
Linea-music is copyright by Dario Ferrando, licensed under the [CC0-1.0][license].
[license]: https://github.com/thecreation/icons/blob/master/modules/linea-music/LICENSE
[standard-icons]: https://github.com/thecreation/standard-icons
[npm]: https://www.npmjs.com/
[install-npm]: https://docs.npmjs.com/getting-started/installing-node
[sass]: http://sass-lang.com/
[github issues]: https://github.com/thecreation/standard-icons/issues
[Unpkg]: https://unpkg.com

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path stroke-linejoin="bevel" d="M32 43L18 32l14-11zM52 43L38 32l14-11z"/><path d="M12 41V23M53.92 10.081c12.107 12.105 12.107 31.732 0 43.838-12.106 12.108-31.734 12.108-43.839 0-12.107-12.105-12.107-31.732 0-43.838 12.105-12.108 31.732-12.108 43.839 0z"/></g></svg>

After

Width:  |  Height:  |  Size: 396 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M32 55h25v-4l-7-7V25c0-9.941-8.059-18-18-18s-18 8.059-18 18v19l-7 7v4h25zM14 41h36M14 35h36M39 55a8 8 0 01-16 0M28 7V1h8v6"/></svg>

After

Width:  |  Height:  |  Size: 266 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><circle cx="32" cy="32" r="31"/><circle cx="32" cy="32" r="6"/><path d="M26 30L5 17M30 26L18 5M38 34l21 13M34 38l13 21"/></g></svg>

After

Width:  |  Height:  |  Size: 260 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="5" cy="59" r="4"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M23 29c-3.124 3.124-3.124 8.876 0 12 3.124 3.124 8.876 2.124 12-1M23 29L51 1M35 40l28-28M23 41L8 56"/></svg>

After

Width:  |  Height:  |  Size: 339 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path stroke-linejoin="bevel" d="M21 34l11-14 11 14z"/><path d="M22 40h20M53.92 10.081c12.107 12.105 12.107 31.732 0 43.838-12.106 12.108-31.734 12.108-43.84 0-12.107-12.105-12.107-31.732 0-43.838 12.106-12.108 31.733-12.108 43.84 0z"/></g></svg>

After

Width:  |  Height:  |  Size: 375 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path stroke-linejoin="bevel" d="M32 21l14 11-14 11zM12 21l14 11-14 11z"/><path d="M52 23v18M53.92 10.081c12.107 12.105 12.107 31.732 0 43.838-12.106 12.108-31.734 12.108-43.84 0-12.107-12.105-12.107-31.732 0-43.838 12.106-12.108 31.733-12.108 43.84 0z"/></g></svg>

After

Width:  |  Height:  |  Size: 394 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path stroke-linejoin="bevel" d="M36 21l14 11-14 11zM16 21l14 11-14 11z"/><path d="M53.92 10.081c12.107 12.105 12.107 31.732 0 43.838-12.106 12.108-31.734 12.108-43.84 0-12.107-12.105-12.107-31.732 0-43.838 12.106-12.108 31.733-12.108 43.84 0z"/></g></svg>

After

Width:  |  Height:  |  Size: 385 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M11 53C5.477 53 1 48.523 1 43s4.477-10 10-10h2v20h-2zM53 33c5.523 0 10 4.477 10 10s-4.477 10-10 10h-2V33h2zM13 36v-9s0-16 19-16 19 16 19 16v6"/></svg>

After

Width:  |  Height:  |  Size: 285 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path d="M16 1h32v62H16zM16 36h32M16 5h32"/><circle stroke-linejoin="bevel" cx="31.5" cy="49.5" r="9.5"/><circle stroke-linejoin="bevel" cx="31.5" cy="49.5" r="2.5"/></g></svg>

After

Width:  |  Height:  |  Size: 305 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M12 1h40v62H12z"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="32" cy="42" r="12"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="32" cy="16" r="6"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="32" cy="42" r="2.5"/></svg>

After

Width:  |  Height:  |  Size: 453 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M17 63h30M32 62V42M48 26c0 8-8 16-16 16s-16-8-16-16"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M40 27a8 8 0 01-16 0V9a8 8 0 0116 0v18zM29 13h-5M29 23h-5M40 13h-5M40 23h-5"/></svg>

After

Width:  |  Height:  |  Size: 348 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="45" cy="15" r="14"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M32 20L6 46l8 8 26-26M24 28l8 8"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M10 50l-4 4 9 9h5l22-22 5 5-7 7"/></svg>

After

Width:  |  Height:  |  Size: 382 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M1 1h62v62H1zM16 10v44M48 10v44M32 10v44M10 14h12M42 50h12M26 32h12"/></svg>

After

Width:  |  Height:  |  Size: 211 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path d="M4 32V20h12L34 2v60L16 44H4zM42 23l18 18M42 41l18-18"/></g></svg>

After

Width:  |  Height:  |  Size: 203 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><circle cx="18" cy="55" r="8"/><circle cx="46" cy="49" r="8"/><path d="M54 49V1L26 7v48M26 23l28-6"/></g></svg>

After

Width:  |  Height:  |  Size: 240 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><circle cx="22" cy="55" r="8"/><path d="M30 55V7l20-6v14l-20 6"/></g></svg>

After

Width:  |  Height:  |  Size: 204 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path d="M25 23v18M38 23v18M53.92 10.081c12.107 12.105 12.107 31.732 0 43.838-12.106 12.108-31.734 12.108-43.839 0-12.107-12.105-12.107-31.732 0-43.838 12.105-12.108 31.732-12.108 43.839 0z"/></g></svg>

After

Width:  |  Height:  |  Size: 331 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path stroke-linejoin="bevel" d="M27 21l14 11-14 11z"/><path d="M53.92 10.081c12.107 12.105 12.107 31.732 0 43.838-12.106 12.108-31.734 12.108-43.839 0-12.107-12.105-12.107-31.732 0-43.838 12.105-12.108 31.732-12.108 43.839 0z"/></g></svg>

After

Width:  |  Height:  |  Size: 368 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><circle cx="35" cy="55" r="8"/><path d="M43 55V7l20-6v14l-20 6"/></g><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M4 16h34M4 26h34M4 36h34"/></svg>

After

Width:  |  Height:  |  Size: 306 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M1 21h62v35H1z"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="17.5" cy="38.5" r="10.5"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M34 35h23v15H34zM52 27h5v4h-5zM43 27h5v4h-5zM34 27h5v4h-5zM5 21V8h54v13M5 12h54M14 48V29M21 48V29M8 35h19M8 42h19"/></svg>

After

Width:  |  Height:  |  Size: 453 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M1 22h62v38H1z"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="20" cy="41" r="13"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M8 36h24M8 46h24M25 29v24M15 29v24M43 28h5v4h-5zM52 28h5v4h-5z"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="52" cy="49" r="5"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M52 44v4M3 22v-4h6v4M53 4L6 16v2"/></svg>

After

Width:  |  Height:  |  Size: 603 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><circle cx="32" cy="32" r="31"/><circle cx="32" cy="32" r="8"/><path d="M32 48c-8.838 0-16-7.16-16-16M32 16c8.838 0 16 7.162 16 16M32.003 55C19.299 55 9 44.707 9 32M32 9c12.704 0 23 10.295 23 23"/></g></svg>

After

Width:  |  Height:  |  Size: 336 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M1 1h62v62H1z"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M53 7h4v8h-4z"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="27.5" cy="27.5" r="22.5"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="27.5" cy="27.5" r="6"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M57 15v33"/><path fill="none" stroke="#000" stroke-width="2" stroke-linejoin="bevel" stroke-miterlimit="10" d="M57 49l-6 3v-4l6-3z"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M5 56h6v3H5zM15 56h6v3h-6z"/></svg>

After

Width:  |  Height:  |  Size: 765 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M56 48H8V24M8 16h48v24"/><path fill="none" stroke="#000" stroke-width="2" stroke-linejoin="bevel" stroke-miterlimit="10" d="M49 33l7 7 7-7M15 31l-7-7-7 7"/></svg>

After

Width:  |  Height:  |  Size: 297 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path stroke-linejoin="bevel" d="M28 43L14 32l14-11zM48 43L34 32l14-11z"/><path d="M53.92 10.081c12.107 12.105 12.107 31.732 0 43.838-12.106 12.108-31.734 12.108-43.839 0-12.107-12.105-12.107-31.732 0-43.838 12.105-12.108 31.732-12.108 43.839 0z"/></g></svg>

After

Width:  |  Height:  |  Size: 387 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M0 48h15l32-32h16M37 38l10 10h16M0 16h15l10 10"/><path fill="none" stroke="#000" stroke-width="2" stroke-linejoin="bevel" stroke-miterlimit="10" d="M56 23l7-7-7-7M56 55l7-7-7-7"/></svg>

After

Width:  |  Height:  |  Size: 320 B

View File

@ -0,0 +1 @@
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M22 22h20v20H22z"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M53.92 10.081c12.107 12.105 12.107 31.732 0 43.838-12.106 12.108-31.734 12.108-43.839 0-12.107-12.105-12.107-31.732 0-43.838 12.105-12.108 31.732-12.108 43.839 0z"/></svg>

After

Width:  |  Height:  |  Size: 414 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M1 11h62v42H1z"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="16" cy="31" r="6"/><circle fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" cx="48" cy="31" r="6"/><path fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M57 53l-3-10H10L7 53M5 15h55v4H5zM26 28h12v6H26z"/></svg>

After

Width:  |  Height:  |  Size: 478 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path d="M8 32V20h12L38 2v60L20 44H8zM46 42c5.522 0 10-4.478 10-10s-4.478-10-10-10"/></g></svg>

After

Width:  |  Height:  |  Size: 224 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="none" stroke="#000" stroke-width="2" stroke-miterlimit="10"><path d="M3 32V20h12L33 2v60L15 44H3zM41 42c5.522 0 10-4.478 10-10s-4.478-10-10-10"/><path d="M41 12c11.046 0 20 8.954 20 20s-8.954 20-20 20"/></g></svg>

After

Width:  |  Height:  |  Size: 282 B

View File

@ -0,0 +1,122 @@
/**
* Linea music, 1.0.0
* Created by Dario Ferrando
* http://www.linea.io/
* CC0-1.0 License
*/
@charset "UTF-8";
@font-face {
font-family: "linea-music";
src: url('linea-music.eot');
src: url('linea-music.eot?#iefix') format('eot'),
url('linea-music.woff') format('woff'),
url('linea-music.ttf') format('truetype'),
url('linea-music.svg#linea-music') format('svg');
}
.lmi {
font-family: "linea-music";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-style: normal;
font-variant: normal;
font-weight: normal;
speak: none;
text-decoration: none;
text-transform: none;
}
.lmi-beginning-button:before {
content: "a";
}
.lmi-bell:before {
content: "b";
}
.lmi-cd:before {
content: "c";
}
.lmi-diapason:before {
content: "d";
}
.lmi-eject-button:before {
content: "e";
}
.lmi-end-button:before {
content: "f";
}
.lmi-fastforward-button:before {
content: "g";
}
.lmi-headphones:before {
content: "h";
}
.lmi-ipod:before {
content: "i";
}
.lmi-loudspeaker:before {
content: "j";
}
.lmi-microphone:before {
content: "k";
}
.lmi-microphone-old:before {
content: "l";
}
.lmi-mixer:before {
content: "m";
}
.lmi-mute:before {
content: "n";
}
.lmi-note-multiple:before {
content: "o";
}
.lmi-note-single:before {
content: "p";
}
.lmi-pause-button:before {
content: "q";
}
.lmi-play-button:before {
content: "r";
}
.lmi-playlist:before {
content: "s";
}
.lmi-radio-ghettoblaster:before {
content: "t";
}
.lmi-radio-portable:before {
content: "u";
}
.lmi-record:before {
content: "v";
}
.lmi-recordplayer:before {
content: "w";
}
.lmi-repeat-button:before {
content: "x";
}
.lmi-rewind-button:before {
content: "y";
}
.lmi-shuffle-button:before {
content: "z";
}
.lmi-stop-button:before {
content: "A";
}
.lmi-tape:before {
content: "B";
}
.lmi-volume-down:before {
content: "C";
}
.lmi-volume-up:before {
content: "D";
}

Binary file not shown.

View File

@ -0,0 +1,40 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by Fontastic.me</metadata>
<defs>
<font id="linea-music-10" horiz-adv-x="512">
<font-face font-family="linea-music-10" units-per-em="512" ascent="480" descent="-32"/>
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#97;" d="M136 262l0-12 114-88 14 6 0 176-14 6z m112-78l-91 72 91 72z m48 78l0-12 114-88 14 6 0 176-14 6z m112-78l-91 72 91 72z m-320 144l16 0 0-144-16 0z m168 184c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 68 0 133 27 181 75 48 48 75 113 75 181 0 68-27 133-75 181-48 48-113 75-181 75z m170-426c-46-45-106-70-170-70-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-64-25-124-70-170z"/>
<glyph unicode="&#98;" d="M408 312c0 70-48 129-112 146l0 54-80 0 0-54c-64-17-112-76-112-146l0-149-56-56 0-43 128 0c4-36 35-64 72-64 37 0 68 28 72 64l144 0 0 43-56 56z m-16-120l-272 0 0 32 272 0z m-160 304l48 0 0-34c-8 1-16 2-24 2-8 0-16-1-24-2z m24-48c75 0 136-61 136-136l0-72-272 0 0 72c0 75 61 136 136 136z m-8-432c-28 0-51 21-55 48l110 0c-4-27-27-48-55-48z m200 85l0-21-384 0 0 21 56 56 0 19 272 0 0-19z"/>
<glyph unicode="&#99;" d="M256 512c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 0 0 0 0 0 0l0 0c141 0 256 115 256 256 0 68-27 133-75 181-48 48-113 75-181 75z m-170-86c16 15 34 29 53 39l91-159c-5-3-10-6-14-10-4-4-7-9-9-14l-157 97c10 17 22 33 36 47z m170-210c-11 0-21 4-28 12-16 15-16 41 0 56 7 8 17 12 28 12 11 0 21-4 28-12 16-15 16-41 0-56-7-8-17-12-28-12z m0-200l0-8 0 8c0 0 0 0 0 0-64 0-124 25-170 70-45 46-70 106-70 170 0 39 9 76 26 109l159-98c-3-18 2-37 15-51 11-10 25-16 40-16 4 0 7 0 11 1l98-159c-33-16-69-26-109-26z m123 34l-97 157c5 2 10 5 14 9 4 4 7 9 9 14l157-97c-20-34-49-63-83-83z m91 97l-159 98c3 18-2 37-15 51-11 10-25 16-40 16-4 0-7 0-11-1l-92 162c32 15 67 23 103 23 64 0 124-25 170-70 45-46 70-106 70-170 0-39-10-76-26-109z"/>
<glyph unicode="&#100;" d="M274 198c-22-22-62-30-84-8-11 10-17 26-17 42 0 16 6 32 17 42l224 224-12 12-224-224c-13-14-21-33-21-54 0-18 6-35 16-48l-111-111c-6 5-14 7-22 7-22 0-40-18-40-40 0-22 18-40 40-40 22 0 40 18 40 40 0 8-2 16-7 22l111 111c12-9 26-12 40-12 22 0 46 10 62 25l224 224-12 12z m-234-182c-13 0-24 11-24 24 0 13 11 24 24 24 13 0 24-11 24-24 0-13-11-24-24-24z"/>
<glyph unicode="&#101;" d="M250 360l-88-114 6-14 176 0 6 14-88 114z m-66-112l72 91 72-91z m-8-48l160 0 0-16-160 0z m80 312c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 68 0 133 27 181 75 48 48 75 113 75 181 0 68-27 133-75 181-48 48-113 75-181 75z m170-426c-46-45-106-70-170-70-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-64-25-124-70-170z"/>
<glyph unicode="&#102;" d="M248 344l0-176 14-6 114 88 0 12-114 88z m16-16l91-72-91-72z m-176 16l0-176 14-6 114 88 0 12-114 88z m16-16l91-72-91-72z m304 0l16 0 0-144-16 0z m-152 184c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 68 0 133 27 181 75 48 48 75 113 75 181 0 68-27 133-75 181-48 48-113 75-181 75z m170-426c-46-45-106-70-170-70-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-64-25-124-70-170z"/>
<glyph unicode="&#103;" d="M280 344l0-176 14-6 114 88 0 12-114 88z m16-16l91-72-91-72z m-176 16l0-176 14-6 114 88 0 12-114 88z m16-16l91-72-91-72z m120 184c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 68 0 133 27 181 75 48 48 75 113 75 181 0 68-27 133-75 181-48 48-113 75-181 75z m170-426c-46-45-106-70-170-70-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-64-25-124-70-170z"/>
<glyph unicode="&#104;" d="M424 256l-8 0 0 40c0 1-2 136-160 136-158 0-160-135-160-136l0-40-8 0c-49 0-88-39-88-88 0-49 39-88 88-88l24 0 0 216c0 5 2 120 144 120 142 0 144-115 144-120l0-216 24 0c49 0 88 39 88 88 0 49-39 88-88 88z m-328-160l-8 0c-40 0-72 32-72 72 0 40 32 72 72 72l8 0z m328 0l-8 0 0 144 8 0c40 0 72-32 72-72 0-40-32-72-72-72z"/>
<glyph unicode="&#105;" d="M120 0l272 0 0 512-272 0z m16 16l0 200 240 0 0-200z m0 216l0 232 240 0 0-232z m240 264l0-16-240 0 0 16z m-124-296c-46 0-84-38-84-84 0-46 38-84 84-84 46 0 84 38 84 84 0 46-38 84-84 84z m0-152c-37 0-68 31-68 68 0 37 31 68 68 68 37 0 68-31 68-68 0-37-31-68-68-68z m0 96c-15 0-28-13-28-28 0-15 13-28 28-28 15 0 28 13 28 28 0 15-13 28-28 28z m0-40c-7 0-12 5-12 12 0 7 5 12 12 12 7 0 12-5 12-12 0-7-5-12-12-12z"/>
<glyph unicode="&#106;" d="M88 0l336 0 0 512-336 0z m16 496l304 0 0-480-304 0z m152-216c-57 0-104-47-104-104 0-57 47-104 104-104 57 0 104 47 104 104 0 57-47 104-104 104z m0-192c-49 0-88 39-88 88 0 49 39 88 88 88 49 0 88-39 88-88 0-49-39-88-88-88z m0 240c31 0 56 25 56 56 0 31-25 56-56 56-31 0-56-25-56-56 0-31 25-56 56-56z m0 96c22 0 40-18 40-40 0-22-18-40-40-40-22 0-40 18-40 40 0 22 18 40 40 40z m0-220c-15 0-28-13-28-28 0-15 13-28 28-28 15 0 28 13 28 28 0 15-13 28-28 28z m0-40c-7 0-12 5-12 12 0 7 5 12 12 12 7 0 12-5 12-12 0-7-5-12-12-12z"/>
<glyph unicode="&#107;" d="M360 512c-66 0-120-54-120-120 0-13 2-26 6-38l-209-210 32-32-32-32 80-80 46 0 173 173 29-29-51-50 12-12 61 62-51 51-179-179-34 0-64 64 21 21 32-32 210 209c12-4 25-6 38-6 66 0 120 54 120 120 0 66-54 120-120 120z m-301-368l133 133 53-53-133-133z m197 91l-53 53 50 50c12-23 30-41 53-53z m104 53c-57 0-104 47-104 104 0 57 47 104 104 104 57 0 104-47 104-104 0-57-47-104-104-104z"/>
<glyph unicode="&#108;" d="M136 304l-16 0c0-66 62-131 128-136l0-152-112 0 0-16 240 0 0 16-112 0 0 152c66 5 128 70 128 136l-16 0c0-59-61-120-120-120-59 0-120 61-120 120z m192-8l0 144c0 40-32 72-72 72-40 0-72-32-72-72l0-144c0-40 32-72 72-72 40 0 72 32 72 72z m-128 0l0 24 32 0 0 16-32 0 0 64 32 0 0 16-32 0 0 24c0 31 25 56 56 56 31 0 56-25 56-56l0-24-32 0 0-16 32 0 0-64-32 0 0-16 32 0 0-24c0-31-25-56-56-56-31 0-56 25-56 56z"/>
<glyph unicode="&#109;" d="M0 0l512 0 0 512-512 0z m16 496l480 0 0-480-480 0z m120-64l-16 0 0-24-40 0 0-16 40 0 0-312 16 0 0 312 40 0 0 16-40 0z m256 0l-16 0 0-312-40 0 0-16 40 0 0-24 16 0 0 24 40 0 0 16-40 0z m-128 0l-16 0 0-168-40 0 0-16 40 0 0-168 16 0 0 168 40 0 0 16-40 0z"/>
<glyph unicode="&#110;" d="M280-3l0 518-155-155-101 0 0-208 101 0z m-240 347l91 0 133 133 0-442-133 133-91 0z m434-10l-66-67-66 67-12-12 67-66-67-66 12-12 66 67 66-67 12 12-67 66 67 66z"/>
<glyph unicode="&#111;" d="M368 192c-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72l0 394-240-52 0-345c-13 17-33 27-56 27-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72l0 250 208 44 0-201c-13 17-33 27-56 27z m-224-176c-31 0-56 25-56 56 0 31 25 56 56 56 31 0 56-25 56-56 0-31-25-56-56-56z m72 322l0 112 208 44 0-112z m152-274c-31 0-56 25-56 56 0 31 25 56 56 56 31 0 56-25 56-56 0-31-25-56-56-56z"/>
<glyph unicode="&#112;" d="M248 72l0 266 160 48 0 129-176-53 0-345c-13 17-33 27-56 27-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72z m0 378l144 43 0-95-144-43z m-128-378c0 31 25 56 56 56 31 0 56-25 56-56 0-31-25-56-56-56-31 0-56 25-56 56z"/>
<glyph unicode="&#113;" d="M192 328l16 0 0-144-16 0z m104 0l16 0 0-144-16 0z m-40 184c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 68 0 133 27 181 75 48 48 75 113 75 181 0 68-27 133-75 181-48 48-113 75-181 75z m170-426c-46-45-106-70-170-70-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-64-25-124-70-170z"/>
<glyph unicode="&#114;" d="M208 344l0-176 14-6 114 88 0 12-114 88z m16-16l91-72-91-72z m32 184c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 68 0 133 27 181 75 48 48 75 113 75 181 0 68-27 133-75 181-48 48-113 75-181 75z m170-426c-46-45-106-70-170-70-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-64-25-124-70-170z"/>
<glyph unicode="&#115;" d="M336 117c-13 17-33 27-56 27-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72l0 266 160 48 0 129-176-53z m-56-101c-31 0-56 25-56 56 0 31 25 56 56 56 31 0 56-25 56-56 0-31-25-56-56-56z m72 434l144 43 0-95-144-43z m-320-58l272 0 0-16-272 0z m0-80l272 0 0-16-272 0z m0-80l272 0 0-16-272 0z"/>
<glyph unicode="&#116;" d="M140 112c51 0 92 41 92 92 0 51-41 92-92 92-51 0-92-41-92-92 0-51 41-92 92-92z m-67 56l31 0 0-31c-13 7-24 18-31 31z m47-37l0 37 40 0 0-37c-6-2-13-3-20-3-7 0-14 1-20 3z m0 53l0 40 40 0 0-40z m56-47l0 31 31 0c-7-13-18-24-31-31z m37 47l-37 0 0 40 37 0c2-6 3-13 3-20 0-7-1-14-3-20z m-6 56l-31 0 0 31c13-7 24-18 31-31z m-47 37l0-37-40 0 0 37c6 2 13 3 20 3 7 0 14-1 20-3z m-56-6l0-31-31 0c7 13 18 24 31 31z m-37-47l37 0 0-40-37 0c-2 6-3 13-3 20 0 7 1 14 3 20z m397 16l-200 0 0-136 200 0z m-16-120l-168 0 0 104 168 0z m16 184l-56 0 0-48 56 0z m-16-32l-24 0 0 16 24 0z m-56 32l-56 0 0-48 56 0z m-16-32l-24 0 0 16 24 0z m-56 32l-56 0 0-48 56 0z m-16-32l-24 0 0 16 24 0z m176 184l-448 0 0-104-32 0 0-296 512 0 0 296-32 0z m-16-16l0-16-416 0 0 16z m-416-32l416 0 0-56-416 0z m448-336l-480 0 0 264 480 0z"/>
<glyph unicode="&#117;" d="M160 72c62 0 112 50 112 112 0 62-50 112-112 112-62 0-112-50-112-112 0-62 50-112 112-112z m-83 64l35 0 0-35c-15 8-27 20-35 35z m51-42l0 42 64 0 0-42c-10-4-21-6-32-6-11 0-22 2-32 6z m0 58l0 64 64 0 0-64z m80-51l0 35 35 0c-8-15-20-27-35-35z m42 51l-42 0 0 64 42 0c4-10 6-21 6-32 0-11-2-22-6-32z m-7 80l-35 0 0 35c15-8 27-20 35-35z m-51 42l0-42-64 0 0 42c10 4 21 6 32 6 11 0 22-2 32-6z m-80-7l0-35-35 0c8 15 20 27 35 35z m-42-51l42 0 0-64-42 0c-4 10-6 21-6 32 0 11 2 22 6 32z m322 80l-56 0 0-48 56 0z m-16-32l-24 0 0 16 24 0z m88 32l-56 0 0-48 56 0z m-16-32l-24 0 0 16 24 0z m-32-96c-26 0-48-22-48-48 0-26 22-48 48-48 26 0 48 22 48 48 0 26-22 48-48 48z m0-80c-18 0-32 14-32 32 0 15 10 27 24 31l0-23 16 0 0 23c14-4 24-16 24-31 0-18-14-32-32-32z m-336 288l-24 0 0 2 370 94-4 16-382-98 0-14-24 0 0-32-16 0 0-320 512 0 0 320-432 0z m-48-16l32 0 0-16-32 0z m464-320l-480 0 0 288 480 0z"/>
<glyph unicode="&#118;" d="M256 512c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 0 0 0 0 0 0l0 0c141 0 256 115 256 256 0 68-27 133-75 181-48 48-113 75-181 75z m0-496l0-8 0 8c0 0 0 0 0 0-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-132-104-240-240-240z m0 312c-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72 0 40-32 72-72 72z m0-128c-31 0-56 25-56 56 0 31 25 56 56 56 31 0 56-25 56-56 0-31-25-56-56-56z m0-80l0 16c-66 0-120 54-120 120l-16 0c0-75 61-136 136-136z m0 272l0-16c66 0 120-54 120-120l16 0c0 75-61 136-136 136z m-176-136l-16 0c0-106 88-192 192-192l0 16c-96 0-176 79-176 176z m176 192l0-16c97 0 176-79 176-176l16 0c0 106-86 192-192 192z"/>
<glyph unicode="&#119;" d="M0 0l512 0 0 512-512 0z m16 496l480 0 0-480-480 0z m400-112l32 0 0-227-44-22-4-7 0-32 12-7 48 24 4 7 0 344-48 0z m32-259l-32-16 0 14 32 16z m-16 323l16 0 0-48-16 0z m-212 32c-104 0-188-84-188-188 0-104 84-188 188-188 104 0 188 84 188 188 0 104-84 188-188 188z m0-360c-95 0-172 77-172 172 0 95 77 172 172 172 95 0 172-77 172-172 0-95-77-172-172-172z m0 228c-31 0-56-25-56-56 0-31 25-56 56-56 31 0 56 25 56 56 0 31-25 56-56 56z m0-96c-22 0-40 18-40 40 0 22 18 40 40 40 22 0 40-18 40-40 0-22-18-40-40-40z m-188-220l64 0 0 40-64 0z m16 24l32 0 0-8-32 0z m64-24l64 0 0 40-64 0z m16 24l32 0 0-8-32 0z"/>
<glyph unicode="&#120;" d="M440 211l-42 43-12-13 56-57 12 0 56 57-12 12-42-42 0 181-392 0 0-16 376 0z m-384 90l0-181 392 0 0 16-376 0 0 165 42-43 12 13-56 57-12 0-56-57 12-12z"/>
<glyph unicode="&#121;" d="M104 262l0-12 114-88 14 6 0 176-14 6z m112-78l-91 72 91 72z m48 78l0-12 114-88 14 6 0 176-14 6z m112-78l-91 72 91 72z m-120 328c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 68 0 133 27 181 75 48 48 75 113 75 181 0 68-27 133-75 181-48 48-113 75-181 75z m170-426c-46-45-106-70-170-70-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-64-25-124-70-170z"/>
<glyph unicode="&#122;" d="M194 298l12 12-83 82-123 0 0-16 117 0z m248 136l43-42-112 0-256-256-117 0 0-16 123 0 256 256 106 0-43-42 13-12 57 56 0 12-57 56z m0-256l43-42-106 0-77 78-12-12 83-82 112 0-43-42 13-12 57 56 0 12-57 56z"/>
<glyph unicode="&#65;" d="M176 344l-8-8 0-160 8-8 160 0 8 8 0 160-8 8z m152-160l-144 0 0 144 144 0z m-72 328c-68 0-133-27-181-75-48-48-75-113-75-181 0-68 27-133 75-181 48-48 113-75 181-75 68 0 133 27 181 75 48 48 75 113 75 181 0 68-27 133-75 181-48 48-113 75-181 75z m170-426c-46-45-106-70-170-70-64 0-124 25-170 70-45 46-70 106-70 170 0 64 25 124 70 170 46 45 106 70 170 70 64 0 124-25 170-70 45-46 70-106 70-170 0-64-25-124-70-170z"/>
<glyph unicode="&#66;" d="M0 80l512 0 0 352-512 0z m67 16l19 64 340 0 19-64z m-51 320l480 0 0-320-34 0-24 80-364 0-24-80-34 0z m112-96c-31 0-56-25-56-56 0-31 25-56 56-56 31 0 56 25 56 56 0 31-25 56-56 56z m0-96c-22 0-40 18-40 40 0 22 18 40 40 40 22 0 40-18 40-40 0-22-18-40-40-40z m256 96c-31 0-56-25-56-56 0-31 25-56 56-56 31 0 56 25 56 56 0 31-25 56-56 56z m0-96c-22 0-40 18-40 40 0 22 18 40 40 40 22 0 40-18 40-40 0-22-18-40-40-40z m104 176l-456 0 0-48 456 0z m-16-32l-424 0 0 16 424 0z m-272-136l112 0 0 64-112 0z m16 48l80 0 0-32-80 0z"/>
<glyph unicode="&#67;" d="M312-3l0 518-155-155-101 0 0-208 101 0z m-240 347l91 0 133 133 0-442-133 133-91 0z m296-160l0-16c49 0 88 39 88 88 0 49-39 88-88 88l0-16c40 0 72-32 72-72 0-40-32-72-72-72z"/>
<glyph unicode="&#68;" d="M272-3l0 518-155-155-101 0 0-208 101 0z m-240 347l91 0 133 133 0-442-133 133-91 0z m296-160l0-16c49 0 88 39 88 88 0 49-39 88-88 88l0-16c40 0 72-32 72-72 0-40-32-72-72-72z m0-96c93 0 168 75 168 168 0 93-75 168-168 168l0-16c84 0 152-68 152-152 0-84-68-152-152-152z"/>
</font></defs></svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,46 @@
{
"name": "linea-music",
"title": "Linea music",
"description": "Linea Iconset a free outline iconset featuring 730+ Icons.",
"version": "1.0.0",
"class": "lmi",
"prefix": "lmi-",
"homepage": "http://www.linea.io/",
"author": "Dario Ferrando",
"license": "CC0-1.0",
"style": "linea-music.css",
"count": "30",
"classifiable": false,
"icons": {
"beginning-button": "beginning-button",
"bell": "bell",
"cd": "cd",
"diapason": "diapason",
"eject-button": "eject-button",
"end-button": "end-button",
"fastforward-button": "fastforward-button",
"headphones": "headphones",
"ipod": "ipod",
"loudspeaker": "loudspeaker",
"microphone": "microphone",
"microphone-old": "microphone-old",
"mixer": "mixer",
"mute": "mute",
"note-multiple": "note-multiple",
"note-single": "note-single",
"pause-button": "pause-button",
"play-button": "play-button",
"playlist": "playlist",
"radio-ghettoblaster": "radio-ghettoblaster",
"radio-portable": "radio-portable",
"record": "record",
"recordplayer": "recordplayer",
"repeat-button": "repeat-button",
"rewind-button": "rewind-button",
"shuffle-button": "shuffle-button",
"stop-button": "stop-button",
"tape": "tape",
"volume-down": "volume-down",
"volume-up": "volume-up"
}
}

View File

@ -0,0 +1,25 @@
{
"version": "1.0.0-alpha.5",
"name": "@icon/linea-music",
"description": "Linea Iconset a free outline iconset featuring 730+ Icons.",
"author": "Dario Ferrando",
"license": "CC0-1.0",
"repository": "https://github.com/thecreation/standard-icons/tree/master/modules/linea-music",
"bugs": {
"url": "https://github.com/thecreation/standard-icons/issues"
},
"scripts": {
"import": "../../scripts/module/import --module=linea-music",
"optimize": "../../scripts/module/optimize",
"update": "ncu -u"
},
"keywords": [
"icons",
"icon"
],
"homepage": "http://www.linea.io/",
"publishConfig": {
"access": "public"
},
"gitHead": "03bca77bca8c5dd936a375e9c556ef3e1a8d4074"
}