variable favicon

Favicon SVG - simplified symbol for small sizes (16x16, 32x32)

A compact version of the eSolia symbol optimized for favicon use. Note: For best results at very small sizes, consider pre-generating PNG favicons using the symbol SVG with sharp or similar tools.

Examples

Example 1

// Use as inline favicon
const link = document.createElement('link');
link.rel = 'icon';
link.href = getLogoDataUri('favicon');
document.head.appendChild(link);

Usage

import { favicon } from ".";