<?php

	function svgicon($string) {
		$arr = [
			'' => ''
		];

		return $arr[$string];
	}

?>