17 lines
266 B
PHP
17 lines
266 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace zin;
|
|
|
|
class divider extends wg
|
|
{
|
|
protected function build(): wg
|
|
{
|
|
return div
|
|
(
|
|
setClass("divider"),
|
|
set($this->getRestProps()),
|
|
$this->children()
|
|
);
|
|
}
|
|
}
|