# share-button/1.16/classes/styles/_rectangle-style.php

Social Share Buttons, version 1.16. 21 lines.

- Page: https://pluginprobe.com/plugins/share-button/1.16/code/classes/styles/_rectangle-style.php
- Raw: https://pluginprobe.com/plugins/share-button/1.16/raw/classes/styles/_rectangle-style.php
- Modified: 2018-02-23T11:42:42+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/share-button/1.16/code/classes/styles/_rectangle-style.php#L10-L20`.

```php
<?php
namespace MBSocial;
defined('ABSPATH') or die('No direct access permitted');

$styles[] = 'rectStyle';
class rectStyle extends style
{
	public $class = 'rectangle';
	public $name = 'rectangle';
	public $description = " Rectangle Buttons ";

	public $width = '75';


	public function mainCSS()
	{
		parent::mainCSS();
		//$this->addCSS('width', '75px');
	}
}

```
