19 lines
571 B
PHP
19 lines
571 B
PHP
<?php
|
|
/**
|
|
* Calendar icon.
|
|
*
|
|
* @package visual-portfolio
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
?>
|
|
|
|
<svg class="vp-svg-icon" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<rect x="1" y="3.5" width="18" height="15.5" rx="3" stroke="currentColor" stroke-width="1.5" fill="transparent" />
|
|
<path d="M6 5V1M14 5V1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" fill="transparent" />
|
|
<path d="M18.5 9H1.5" stroke="currentColor" stroke-width="1.5" fill="transparent" />
|
|
</svg>
|