40 lines
2.4 KiB
PHP
40 lines
2.4 KiB
PHP
<?php
|
|
// Monochrome SVG icons for navigation (Hammer Editor style)
|
|
// Simple, geometric, 16x16 viewBox
|
|
|
|
function icon_dashboard(): string {
|
|
return '<svg viewBox="0 0 16 16"><path d="M1 1h6v6H1zM9 1h6v6H9zM1 9h6v6H1zM9 9h6v6H9z" fill="none" stroke="currentColor" stroke-width="1.5"/></svg>';
|
|
}
|
|
|
|
function icon_invoices(): string {
|
|
return '<svg viewBox="0 0 16 16"><path d="M3 1h7l3 3v11H3z" fill="none" stroke="currentColor" stroke-width="1.3"/><path d="M5 6h6M5 8.5h6M5 11h4" stroke="currentColor" stroke-width="1" opacity=".6"/></svg>';
|
|
}
|
|
|
|
function icon_journal(): string {
|
|
return '<svg viewBox="0 0 16 16"><path d="M2 2h12v12H2z" fill="none" stroke="currentColor" stroke-width="1.3"/><path d="M2 5h12M2 8h12M2 11h12M6 2v12" stroke="currentColor" stroke-width=".8" opacity=".5"/></svg>';
|
|
}
|
|
|
|
function icon_settings(): string {
|
|
return '<svg viewBox="0 0 16 16"><circle cx="8" cy="8" r="2.5" fill="none" stroke="currentColor" stroke-width="1.3"/><path d="M8 1v2M8 13v2M1 8h2M13 8h2M3.05 3.05l1.4 1.4M11.55 11.55l1.4 1.4M3.05 12.95l1.4-1.4M11.55 4.45l1.4-1.4" stroke="currentColor" stroke-width="1.2"/></svg>';
|
|
}
|
|
|
|
function icon_euer(): string {
|
|
return '<svg viewBox="0 0 16 16"><path d="M2 14V2h4l2 3h6v9H2z" fill="none" stroke="currentColor" stroke-width="1.3"/><path d="M5 7h6M5 10h4" stroke="currentColor" stroke-width="1" opacity=".6"/></svg>';
|
|
}
|
|
|
|
function icon_customers(): string {
|
|
return '<svg viewBox="0 0 16 16"><circle cx="8" cy="5" r="2.5" fill="none" stroke="currentColor" stroke-width="1.3"/><path d="M3 14c0-3 2.2-5 5-5s5 2 5 5" fill="none" stroke="currentColor" stroke-width="1.3"/></svg>';
|
|
}
|
|
|
|
function icon_expenses(): string {
|
|
return '<svg viewBox="0 0 16 16"><path d="M2 3h12v10H2z" fill="none" stroke="currentColor" stroke-width="1.3"/><path d="M5 8h6M8 5v6" stroke="currentColor" stroke-width="1" opacity=".6"/><path d="M2 6h12" stroke="currentColor" stroke-width=".8" opacity=".5"/></svg>';
|
|
}
|
|
|
|
function icon_logout(): string {
|
|
return '<svg viewBox="0 0 16 16"><path d="M6 2H3v12h3M6 8h8M11 5l3 3-3 3" fill="none" stroke="currentColor" stroke-width="1.3"/></svg>';
|
|
}
|
|
|
|
function icon_archive(): string {
|
|
return '<svg viewBox="0 0 16 16"><path d="M1 3h14v3H1z" fill="none" stroke="currentColor" stroke-width="1.3"/><path d="M2 6v8h12V6" fill="none" stroke="currentColor" stroke-width="1.3"/><path d="M6 9.5h4" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/></svg>';
|
|
}
|