<?php
declare(strict_types=1);
namespace Arcanedev\Html\Elements;
/**
* Class Span
*
* @author ARCANEDEV <arcanedev.maroc@gmail.com>
*/
class Span extends HtmlElement
{
/* -----------------------------------------------------------------
| Properties
| -----------------------------------------------------------------
*/
/**
* The tag type.
*
* @var string
*/
protected $tag = 'span';
}