'16',
'class' => '',
), $attrs);
$path = '';
$view_box = '0 0 40 40';
switch ( $icon_name ) {
case 'arkhe-logo':
$path = '';
break;
case 'home':
$path = '';
break;
case 'folder':
$path = '';
break;
case 'tag':
$path = '
';
break;
case 'menu':
$path = '';
break;
case 'close':
$path = '';
break;
case 'posted':
$path = '';
break;
case 'modified':
$path = '';
break;
case 'chevron-up':
$path = '';
break;
case 'chevron-down':
$path = '';
break;
case 'chevron-left':
$path = '';
break;
case 'chevron-right':
$path = '';
break;
case 'search':
$path = '';
break;
case 'link':
$path = '
';
break;
default:
break;
}
$svg = '';
if ( $path ) {
$svg_class = 'arkhe-svg-' . $icon_name;
if ( $attrs['class'] ) {
$svg_class .= ' ' . $attrs['class'];
}
$svg = '';
}
return apply_filters( 'arkhe_get_svg', $svg, $icon_name, $attrs );
}
}