Lucide (ISC) and Feather (MIT) — icon path data
===============================================

VendMizer's interface icons are inline SVG path data taken from two upstream
icon projects. No script, stylesheet or font from either project is bundled;
only the vector path strings are reproduced, inside the plugin's own files.

Lucide (https://lucide.dev) is a fork of Feather (https://feathericons.com),
so most of these paths carry both copyrights and Lucide's ISC notice already
says so. A few are Feather's original drawing rather than Lucide's later
revision of it, which is why Feather's own MIT notice is reproduced below as
well: both licences require their notice to travel with the code.

Where the path data lives
-------------------------

    assets/js/lib/vmz-icons.js
        The shared icon registry. Predominantly Lucide, with a number of
        icons that are Feather's drawing unchanged (among them check-circle,
        file-minus, flag, git-branch, headphones, message-square, pen-tool,
        phone, refresh-ccw, repeat, tool and users).

    assets/js/store/vmz-store-cookie-consent.js
        Lucide. The consent banner's own icons, inlined so the banner can
        paint before the icon registry loads.

    includes/class-vmz-section-renderer.php
        Lucide, with two Feather-drawn icons (phone, refresh-ccw). The
        server-side storefront section renderer inlines these because it
        emits public HTML without loading the JS registry.

    includes/trait-vmz-portal-renderer.php
        Feather: `globe` and `moon` are Feather's paths unchanged, and `sun`
        is Feather's with its diagonal ray coordinates rounded to one decimal
        place. These three draw the language and light/dark controls on the
        maintenance screen.

Nothing else in this plugin reproduces third-party icon path data. In
particular `assets/img/placeholder.svg` is VendMizer's own drawing: it depicts
a shopping bag, as those sets also do, but its geometry matches neither
project's `shopping-bag` under any scale — the body is 90x72 against Feather's
18x20, a different aspect ratio, with a corner radius proportionally smaller.
The payment, messaging and analytics brand marks the plugin draws are covered
separately, by `assets/js/lib/LICENSE-brand-marks.txt`.

--------------------------------------------------------------------------

ISC License  (Lucide)

Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part
of Feather (MIT). All other copyright (c) for Lucide are held by Lucide
Contributors 2022.

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.

--------------------------------------------------------------------------

The MIT License (MIT)  (Feather)

Copyright (c) 2013-2023 Cole Bemis

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
