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

Social Share Buttons, version 1.16. 25 lines.

- Page: https://pluginprobe.com/plugins/share-button/1.16/code/classes/styles/round-style.php
- Raw: https://pluginprobe.com/plugins/share-button/1.16/raw/classes/styles/round-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/round-style.php#L10-L20`.

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

class roundStyle extends style
{
	public $class = 'round';
	public $name = 'round';
	public $description = ' Round Buttons Basic ';

	public $has_label = true;


  public function __construct()
	{
			parent::__construct();

			$this->css['mb-social']['normal']['border-radius'] = '50% 50%';
	}


} // class

roundStyle::registerStyle('round');

```
