# depicter/1.3.2/app/src/Document/Models/Elements/Scroll.php

Depicter — Popup &amp; Slider Builder, version 1.3.2. 27 lines.

- Page: https://pluginprobe.com/plugins/depicter/1.3.2/code/app/src/Document/Models/Elements/Scroll.php
- Raw: https://pluginprobe.com/plugins/depicter/1.3.2/raw/app/src/Document/Models/Elements/Scroll.php
- Modified: 2022-06-01T06:26:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/depicter/1.3.2/code/app/src/Document/Models/Elements/Scroll.php#L10-L20`.

```php
<?php
namespace Depicter\Document\Models\Elements;

use Depicter\Html\Html;

class Scroll extends Svg {

	/**
	 * render scroll markup
	 * @return \TypeRocket\Html\Html|void
	 */
	public function render() {
		$args = $this->getDefaultAttributes();
		return Html::div( $args, "\n" . $this->options->content . "\n" );
	}

	/**
	 * Get svg selector
	 *
	 * @return string
	 */
	public function getSvgSelector() {
		return '.' . $this->getSelector() . ' svg';
	}

}

```
